From: Mark Andrews Date: Tue, 24 Sep 2013 23:47:31 +0000 (+1000) Subject: 3654. [bug] Address race condition with manual notify requests. X-Git-Tag: v9.10.0a1~79 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=5116f25421090dffe637eb8f6cf7b44acd83678b;p=thirdparty%2Fbind9.git 3654. [bug] Address race condition with manual notify requests. [RT #34806] --- diff --git a/CHANGES b/CHANGES index 47f2a2b13e5..407659b5547 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +3654. [bug] Address race condition with manual notify requests. + [RT #34806] + 3653. [func] Create delegations for all "children" of empty zones except "forward first". [RT #34826] diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 1d8499770ac..246540f1e29 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -11921,10 +11921,10 @@ zone_settimer(dns_zone_t *zone, isc_time_t *now) { isc_time_compare(&zone->refreshtime, &next) < 0) next = zone->refreshtime; } - if (DNS_ZONE_FLAG(zone, DNS_ZONEFLG_LOADED)) { - INSIST(!isc_time_isepoch(&zone->expiretime)); + if (DNS_ZONE_FLAG(zone, DNS_ZONEFLG_LOADED) && + !isc_time_isepoch(&zone->expiretime)) { if (isc_time_isepoch(&next) || - isc_time_compare(&zone->expiretime, &next) < 0) + isc_time_compare(&zone->expiretime, &next) < 0) next = zone->expiretime; } if (DNS_ZONE_FLAG(zone, DNS_ZONEFLG_NEEDDUMP) &&