]> git.meshlink.io Git - meshlink/blobdiff - src/list.c
Rename xmalloc_and_zero() to xzalloc().
[meshlink] / src / list.c
index 2dd414a0cdad467718b01be0f4dfd76cf9620d6f..e2eeabccfac7a4644ac89e8f387465da9a158a5b 100644 (file)
@@ -26,7 +26,7 @@
 /* (De)constructors */
 
 list_t *list_alloc(list_action_t delete) {
-       list_t *list = xmalloc_and_zero(sizeof(list_t));
+       list_t *list = xzalloc(sizeof(list_t));
        list->delete = delete;
 
        return list;
@@ -37,7 +37,7 @@ void list_free(list_t *list) {
 }
 
 list_node_t *list_alloc_node(void) {
-       return xmalloc_and_zero(sizeof(list_node_t));
+       return xzalloc(sizeof(list_node_t));
 }
 
 void list_free_node(list_t *list, list_node_t *node) {