mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 14:29:59 -04:00
use read lock in rdataset_getownercase()
we were incorrectly write-locking the node when retrieving the owner case of an rdataset.
This commit is contained in:
parent
c3fbcda5a1
commit
b3c2b64662
1 changed files with 2 additions and 2 deletions
|
|
@ -1476,7 +1476,7 @@ rdataset_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
|
|||
uint8_t mask = (1 << 7);
|
||||
uint8_t bits = 0;
|
||||
|
||||
dns_db_locknode(header->db, header->node, isc_rwlocktype_write);
|
||||
dns_db_locknode(header->db, header->node, isc_rwlocktype_read);
|
||||
|
||||
if (!CASESET(header)) {
|
||||
goto unlock;
|
||||
|
|
@ -1499,5 +1499,5 @@ rdataset_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
|
|||
}
|
||||
|
||||
unlock:
|
||||
dns_db_unlocknode(header->db, header->node, isc_rwlocktype_write);
|
||||
dns_db_unlocknode(header->db, header->node, isc_rwlocktype_read);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue