From 1793be084958708fa2de8290a4f5f3e850f9e95d Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 19 Jun 2002 14:10:55 +0000 Subject: [PATCH] malloc -> xmalloc. --- lib/ipaccess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ipaccess.c b/lib/ipaccess.c index 18b1383a..1eaa4049 100644 --- a/lib/ipaccess.c +++ b/lib/ipaccess.c @@ -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; -- 2.39.5