mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-15 16:48:09 -05:00
2060. [bug] Enabling DLZ support could leave views partially
configured. [RT #16295]
This commit is contained in:
parent
f22ef4dfb9
commit
39ef7dddef
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -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
|
||||
failure while cleaning up a stale rdataset.
|
||||
[RT #16292]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* 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 */
|
||||
|
||||
|
|
@ -1062,7 +1062,7 @@ configure_view(dns_view_t *view, const cfg_obj_t *config,
|
|||
&view->dlzdatabase);
|
||||
isc_mem_free(mctx, s);
|
||||
isc_mem_put(mctx, dlzargv, dlzargc * sizeof(*dlzargv));
|
||||
if (result == ISC_R_SUCCESS)
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto cleanup;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue