mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 08:05:21 +00:00
1857. [bug] named could trigger a INSIST() if reconfigured /
reloaded too fast. [RT #14673]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -39,7 +39,8 @@
|
|||||||
1858. [bug] The flush-zones-on-shutdown option wasn't being
|
1858. [bug] The flush-zones-on-shutdown option wasn't being
|
||||||
parsed. [RT #14686]
|
parsed. [RT #14686]
|
||||||
|
|
||||||
1857. [placeholder] rt14673
|
1857. [bug] named could trigger a INSIST() if reconfigured /
|
||||||
|
reloaded too fast. [RT #14673]
|
||||||
|
|
||||||
1856. [doc] Switch Docbook toolchain from DSSSL to XSL.
|
1856. [doc] Switch Docbook toolchain from DSSSL to XSL.
|
||||||
[RT #11398]
|
[RT #11398]
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: server.c,v 1.443 2005/06/07 00:27:32 marka Exp $ */
|
/* $Id: server.c,v 1.444 2005/06/07 01:52:51 marka Exp $ */
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
||||||
@@ -2008,9 +2008,13 @@ adjust_interfaces(ns_server_t *server, isc_mem_t *mctx) {
|
|||||||
* At this point the zone list may contain a stale zone
|
* At this point the zone list may contain a stale zone
|
||||||
* just removed from the configuration. To see the validity,
|
* just removed from the configuration. To see the validity,
|
||||||
* check if the corresponding view is in our current view list.
|
* check if the corresponding view is in our current view list.
|
||||||
|
* There may also be old zones that are still in the process
|
||||||
|
* of shutting down and have detached from their old view
|
||||||
|
* (zoneview == NULL).
|
||||||
*/
|
*/
|
||||||
zoneview = dns_zone_getview(zone);
|
zoneview = dns_zone_getview(zone);
|
||||||
INSIST(zoneview != NULL);
|
if (zoneview == NULL)
|
||||||
|
continue;
|
||||||
for (view = ISC_LIST_HEAD(server->viewlist);
|
for (view = ISC_LIST_HEAD(server->viewlist);
|
||||||
view != NULL && view != zoneview;
|
view != NULL && view != zoneview;
|
||||||
view = ISC_LIST_NEXT(view, link))
|
view = ISC_LIST_NEXT(view, link))
|
||||||
|
@@ -34,10 +34,10 @@ rt13662 open marka // rrset-order fixed
|
|||||||
rt13753 review
|
rt13753 review
|
||||||
rt13771 review
|
rt13771 review
|
||||||
rt14616 review
|
rt14616 review
|
||||||
rt14673 review
|
rt14673 closed
|
||||||
rt14695 review
|
rt14695 review
|
||||||
rt14775 review
|
rt14775 review
|
||||||
rt14801 review
|
rt14801 closed
|
||||||
rt14802 closed
|
rt14802 closed
|
||||||
rt14814 review
|
rt14814 review
|
||||||
rt14815 open marka
|
rt14815 open marka
|
||||||
|
Reference in New Issue
Block a user