mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-16 17:42:49 -04:00
Merge branch '4462-crash-on-shutdown-when-dnssec-validation-is-running-ensure-isc_mempool_getallocated-namepoolp' into 'main'
Resolve "Crash on shutdown when DNSSEC validation is running: ENSURE(isc_mempool_getallocated(*namepoolp) == 0) failed" Closes #4462 and #4384 See merge request isc-projects/bind9!8526
This commit is contained in:
commit
64ef6968f3
1 changed files with 1 additions and 1 deletions
|
|
@ -3119,10 +3119,10 @@ destroy_validator(dns_validator_t *val) {
|
|||
if (val->siginfo != NULL) {
|
||||
isc_mem_put(mctx, val->siginfo, sizeof(*val->siginfo));
|
||||
}
|
||||
dns_view_detach(&val->view);
|
||||
if (val->message != NULL) {
|
||||
dns_message_detach(&val->message);
|
||||
}
|
||||
dns_view_detach(&val->view);
|
||||
isc_mem_put(mctx, val, sizeof(*val));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue