objects are from memory pools. (I believe it was me who converted them
initially, but missed this..)
Submitted by: Andres Kroonmaa <andre@online.ee>
/*
- * $Id: cache_cf.cc,v 1.355 2000/11/15 12:53:50 adrian Exp $
+ * $Id: cache_cf.cc,v 1.356 2000/11/25 14:51:04 adrian Exp $
*
* DEBUG: section 3 Configuration File Parsing
* AUTHOR: Harvest Derived
for (a = *list; a; a = a_next) {
for (l = a->acl_list; l; l = l_next) {
l_next = l->next;
- safe_free(l);
+ memFree(l, MEM_ACL_NAME_LIST);
+ l = NULL;
}
a_next = a->next;
- safe_free(a);
+ memFree(a, MEM_ACL_DENY_INFO_LIST);
+ a = NULL;
}
*list = NULL;
}