]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorBrian Wellington <source@isc.org>
Fri, 11 Aug 2000 02:38:16 +0000 (02:38 +0000)
committerBrian Wellington <source@isc.org>
Fri, 11 Aug 2000 02:38:16 +0000 (02:38 +0000)
The acl name was being assigned to NULL before it could be freed.

bin/named/aclconf.c

index 6c8d616351e83685de054c70b7d7eef4858a9586..e96815e95cf5533be05655b757d64c5cdee6cf55 100644 (file)
@@ -15,7 +15,7 @@
  * SOFTWARE.
  */
 
-/* $Id: aclconf.c,v 1.18.2.1 2000/08/11 02:13:02 bwelling Exp $ */
+/* $Id: aclconf.c,v 1.18.2.2 2000/08/11 02:38:16 bwelling Exp $ */
 
 #include <config.h>
 
@@ -41,7 +41,6 @@ dns_aclconfctx_destroy(dns_aclconfctx_t *ctx) {
             dacl = next)
        {
                next = ISC_LIST_NEXT(dacl, nextincache);
-               dacl->name = NULL;
                dns_acl_detach(&dacl);
        }
 }