From fd61e791b5c199efe843ad7e913718643042a219 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Tue, 26 Sep 2000 04:57:46 +0000 Subject: Updated the free() calls to the safefree() calls. --- src/acl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/acl.c') diff --git a/src/acl.c b/src/acl.c index 88f25b2..60ad82e 100644 --- a/src/acl.c +++ b/src/acl.c @@ -1,4 +1,4 @@ -/* $Id: acl.c,v 1.1 2000-09-12 00:08:48 rjkaes Exp $ +/* $Id: acl.c,v 1.2 2000-09-26 04:57:46 rjkaes Exp $ * * This system handles Access Control for use of this daemon. A list of * domains, or IP addresses (including IP blocks) are stored in a list @@ -107,7 +107,7 @@ int insert_acl(char *location, acl_access_t access_type) new_acl_ptr->netmask = atoi(nptr); if (new_acl_ptr->netmask < 0 || new_acl_ptr->netmask > 32) { - free(new_acl_ptr); + safefree(new_acl_ptr); return -1; } } else { @@ -120,7 +120,7 @@ int insert_acl(char *location, acl_access_t access_type) new_acl_ptr->location = strdup(location); if (!new_acl_ptr->location) { - free(new_acl_ptr); + safefree(new_acl_ptr); return -1; } -- cgit v1.2.3