]> mj.ucw.cz Git - libucw.git/commitdiff
malloc -> xmalloc.
authorMartin Mares <mj@ucw.cz>
Wed, 19 Jun 2002 14:10:55 +0000 (14:10 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 19 Jun 2002 14:10:55 +0000 (14:10 +0000)
lib/ipaccess.c

index 18b1383ae6e25b5024a7b4a651a927eb9d0fa6a7..1eaa404947787c1746872a77349b545bc6b0221f 100644 (file)
@@ -26,7 +26,7 @@ struct ipaccess_list *
 ipaccess_init(void)
 {
   /* Cannot use cfg_malloc() here as the pool can be uninitialized now */
-  struct ipaccess_list *l = malloc(sizeof(*l));
+  struct ipaccess_list *l = xmalloc(sizeof(*l));
 
   init_list(&l->l);
   return l;