2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 07:35:26 +00:00

2060. [bug] Enabling DLZ support could leave views partially

configured. [RT #16295]
This commit is contained in:
Mark Andrews
2006-07-24 05:51:22 +00:00
parent f22ef4dfb9
commit 39ef7dddef
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2060. [bug] Enabling DLZ support could leave views partially
configured. [RT #16295]
2059. [bug] Search into cache rbtdb could trigger an INSIST 2059. [bug] Search into cache rbtdb could trigger an INSIST
failure while cleaning up a stale rdataset. failure while cleaning up a stale rdataset.
[RT #16292] [RT #16292]

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: server.c,v 1.465 2006/05/24 04:23:15 marka Exp $ */ /* $Id: server.c,v 1.466 2006/07/24 05:51:22 marka Exp $ */
/*! \file */ /*! \file */
@@ -1062,7 +1062,7 @@ configure_view(dns_view_t *view, const cfg_obj_t *config,
&view->dlzdatabase); &view->dlzdatabase);
isc_mem_free(mctx, s); isc_mem_free(mctx, s);
isc_mem_put(mctx, dlzargv, dlzargc * sizeof(*dlzargv)); isc_mem_put(mctx, dlzargv, dlzargc * sizeof(*dlzargv));
if (result == ISC_R_SUCCESS) if (result != ISC_R_SUCCESS)
goto cleanup; goto cleanup;
} }
} }