From: wessels <> Date: Sat, 14 Sep 1996 01:11:13 +0000 (+0000) Subject: From: Markus Stumpf X-Git-Tag: SQUID_3_0_PRE1~5811 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4296e99c1cc531a9eff2f416cdb6b69876385ce;p=thirdparty%2Fsquid.git From: Markus Stumpf There *is* a problem with restarting the server :-((( There is a *list = NULL; missing in acl.c at the end of aclDestroyDenyInfoList(). (This function is at the end of acl.c). --- diff --git a/src/acl.cc b/src/acl.cc index ae015686cc..10d5c1134f 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,5 +1,5 @@ /* - * $Id: acl.cc,v 1.32 1996/09/12 03:24:00 wessels Exp $ + * $Id: acl.cc,v 1.33 1996/09/13 19:11:13 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -969,8 +969,7 @@ void aclDestroyAccessList(list) } /* maex@space.net (06.09.1996) - * destroy an _acl_deny_info_list - */ + * destroy an _acl_deny_info_list */ void aclDestroyDenyInfoList(list) struct _acl_deny_info_list **list; { @@ -987,4 +986,5 @@ void aclDestroyDenyInfoList(list) a_next = a->next; safe_free(a); } + *list = NULL; }