2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 22:45:39 +00:00

1635. [bug] Memory leak on error in query_addds().

This commit is contained in:
Mark Andrews
2004-05-14 00:10:52 +00:00
parent 754ebd37e7
commit 4499c6cd5e
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
1635. [bug] Memory leak on error in query_addds().
1634. [placeholder] rt11208 1634. [placeholder] rt11208
1633. [bug] named should return NOTIMP to update requests to a 1633. [bug] named should return NOTIMP to update requests to a

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: query.c,v 1.258 2004/04/15 01:58:23 marka Exp $ */ /* $Id: query.c,v 1.259 2004/05/14 00:10:52 marka Exp $ */
#include <config.h> #include <config.h>
@@ -1785,7 +1785,7 @@ query_addds(ns_client_t *client, dns_db_t *db, dns_dbnode_t *node) {
rdataset = query_newrdataset(client); rdataset = query_newrdataset(client);
sigrdataset = query_newrdataset(client); sigrdataset = query_newrdataset(client);
if (rdataset == NULL || sigrdataset == NULL) if (rdataset == NULL || sigrdataset == NULL)
return; goto cleanup;
/* /*
* Look for the DS record, which may or may not be present. * Look for the DS record, which may or may not be present.