mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:20:01 -04:00
Add missing isc_rwlock_destroy() for keylist_lock in dnssec-signzone
The keylist_lock rwlock is initialized at startup but never destroyed
on exit, unlike the sibling namelock mutex which is properly cleaned up.
(cherry picked from commit 5dc19a7d92)
This commit is contained in:
parent
b0e8f5ec65
commit
b20ddf5c13
1 changed files with 1 additions and 0 deletions
|
|
@ -4182,6 +4182,7 @@ main(int argc, char *argv[]) {
|
|||
&sign_finish);
|
||||
}
|
||||
isc_mutex_destroy(&namelock);
|
||||
isc_rwlock_destroy(&keylist_lock);
|
||||
|
||||
rcu_barrier();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue