]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
From: Markus Stumpf <maex@Space.NET>
authorwessels <>
Sat, 14 Sep 1996 01:11:13 +0000 (01:11 +0000)
committerwessels <>
Sat, 14 Sep 1996 01:11:13 +0000 (01:11 +0000)
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).

src/acl.cc

index ae015686cc7e15032b7e65171e632aab3b861c66..10d5c1134f22b3b69f40346db8fe5a9be6a6d119 100644 (file)
@@ -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;
 }