mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
1635. [bug] Memory leak on error in query_addds().
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -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
|
||||||
|
@@ -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.
|
||||||
|
Reference in New Issue
Block a user