2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Merge branch '3500-nsec3-missing-detach-node-9_18' into 'v9_18'

nsec3.c: Add a missing dns_db_detachnode() call

See merge request isc-projects/bind9!6693
This commit is contained in:
Matthijs Mekking
2022-08-23 11:24:56 +00:00
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
5948. [bug] Fix nsec3.c:dns_nsec3_activex() function, add a missing
dns_db_detachnode() call. [GL #3500]
5947. [func] Change dnssec-policy to allow graceful transition from
an NSEC only zone to NSEC3. [GL #3486]

View File

@@ -1833,6 +1833,7 @@ dns_nsec3_activex(dns_db_t *db, dns_dbversion_t *version, bool complete,
try_private:
if (privatetype == 0 || complete) {
dns_db_detachnode(db, &node);
*answer = false;
return (ISC_R_SUCCESS);
}