mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-16 04:08:52 -04: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);
}
|
||
|---|---|---|
| .. | ||
| a_1.c | ||
| a_1.h | ||