Merge branch '3900-catz-error-path-issues-v9_16' into 'v9_16'

[9.16] Resolve "Error path cleanup issues in dns_catz_new_zones() and dns_catz_new_zone()"

See merge request isc-projects/bind9!7607
This commit is contained in:
Arаm Sаrgsyаn
2023-02-27 15:15:34 +00:00
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -1,3 +1,6 @@
6116. [bug] Fix error path cleanup issue in the dns_catz_new_zones()
function. [GL #3900]
6105. [bug] Detach 'rpzs' and 'catzs' from the previous view in
configure_rpz() and configure_catz(), respectively,
just after attaching it to the new view. [GL #3880]
+1 -1
View File
@@ -630,7 +630,7 @@ cleanup_ht:
isc_ht_destroy(&new_zones->zones);
isc_refcount_destroy(&new_zones->refs);
isc_mutex_destroy(&new_zones->lock);
isc_mem_put(mctx, new_zones, sizeof(*new_zones));
isc_mem_putanddetach(&new_zones->mctx, new_zones, sizeof(*new_zones));
return (result);
}