mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3968-catz-data-race-in-dns__catz_update_cb-9.18' into 'bind-9.18'
[9.18] Fix a data race in dns__catz_update_cb() See merge request isc-projects/bind9!7727
This commit is contained in:
commit
e8aae75aec
2 changed files with 5 additions and 1 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
6128. [bug] Fix an omission in an earlier commit to avoid a race
|
||||
between the 'dns__catz_update_cb()' and
|
||||
'dns_catz_dbupdate_callback()' functions. [GL #3968]
|
||||
|
||||
6126. [cleanup] Deprecate zone type "delegation-only" and the
|
||||
"delegation-only" and "root-delegation-only"
|
||||
options. [GL #3953]
|
||||
|
|
|
|||
|
|
@ -2254,7 +2254,7 @@ dns__catz_update_cb(void *data) {
|
|||
uint32_t catz_vers;
|
||||
|
||||
REQUIRE(DNS_CATZ_ZONE_VALID(catz));
|
||||
REQUIRE(DNS_DB_VALID(catz->db));
|
||||
REQUIRE(DNS_DB_VALID(catz->updb));
|
||||
REQUIRE(DNS_CATZ_ZONES_VALID(catz->catzs));
|
||||
|
||||
updb = catz->updb;
|
||||
|
|
|
|||
Loading…
Reference in a new issue