mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 08:22:04 -04:00
lib/dns/rdata.c: Silence false positive nullPointerRedundantCheck warning from Cppcheck
This commit is contained in:
parent
d508ce4036
commit
e68333aa67
1 changed files with 1 additions and 1 deletions
|
|
@ -1199,7 +1199,7 @@ dns_rdata_tostruct(const dns_rdata_t *rdata, void *target, isc_mem_t *mctx) {
|
|||
void
|
||||
dns_rdata_freestruct(void *source) {
|
||||
dns_rdatacommon_t *common = source;
|
||||
REQUIRE(source != NULL);
|
||||
REQUIRE(common != NULL);
|
||||
|
||||
FREESTRUCTSWITCH
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue