mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-07 18:15:34 +00:00
Cppcheck gets confused by: void bar(void *arg) { foo *data = arg; REQUIRE(source != NULL); REQUIRE(data->member != NULL); } and for consistency the DbC check needs to be changed to void bar(void *arg) { foo *data = arg; REQUIRE(data != NULL); REQUIRE(data->member != NULL); }