mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-26 03:12:16 -04:00
CID 638286: Concurrent data access violations (MISSING_LOCK). This complains about accessing "zone->notifyctx.notify_acl" without holding the lock "dns_zone.lock". Elsewhere, reading this data does have the lock, so it makes sense that in the getter function this must also be so. However, the function is unused so we can just remove it. CID 638287: Concurrent data access violations (MISSING_LOCK). This complains about accessing "zone->locked" without holding the lock "dns_zone.lock". I think this is a false positive as "dns__zone_lock()" and "dns__zone_unlock() are wrappers around "LOCK_ZONE()" and "UNLOCK_ZONE()" and where these macros were used they were only replaced with the internal zone functions. Moreover, "zone->locked" is only accessed in these macros (and "TRYLOCK_ZONE()" and "LOCKED_ZONE()"). |
||
|---|---|---|
| .. | ||
| dns | ||
| isc | ||
| isccc | ||
| isccfg | ||
| ns | ||
| .gitignore | ||
| meson.build | ||