From: Mark Andrews Date: Fri, 10 Apr 2015 22:04:02 +0000 (+1000) Subject: 4095. [bug] zone->options2 was not being properly initalized. X-Git-Tag: v9.11.0a1~890 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54fe1d05b6d78120452c71023629b35cbe55e97f;p=thirdparty%2Fbind9.git 4095. [bug] zone->options2 was not being properly initalized. [RT #39228] --- diff --git a/CHANGES b/CHANGES index 668eb23180f..5c43c010b87 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +4095. [bug] zone->options2 was not being properly initalized. + [RT #39228] + 4094. [bug] A race during shutdown or reconfiguration could cause an assertion in mem.c. [RT #38979] diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 73f4221f39d..e674ac9cf95 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -936,6 +936,7 @@ dns_zone_create(dns_zone_t **zonep, isc_mem_t *mctx) { zone->type = dns_zone_none; zone->flags = 0; zone->options = 0; + zone->options2 = 0; zone->keyopts = 0; zone->db_argc = 0; zone->db_argv = NULL;