Ondřej Surý
|
66af8713d8
|
lib/dns/rdata/*/*.c: Silence false positive nullPointerRedundantCheck warning from Cppcheck
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);
}
|
2019-10-03 09:04:26 +02:00 |
|
Ondřej Surý
|
994e656977
|
Replace custom isc_boolean_t with C standard bool type
|
2018-08-08 09:37:30 +02:00 |
|
Ondřej Surý
|
843d389661
|
Update license headers to not include years in copyright in all applicable files
|
2018-02-23 10:12:02 +01:00 |
|
Tinderbox User
|
ca0ae70046
|
update copyright notice / whitespace
|
2017-10-03 23:45:48 +00:00 |
|
Mark Andrews
|
a009d03a1a
|
4748. [cleanup] Sprintf to snprintf coversions. [RT #46132]
|
2017-10-03 14:54:19 +11:00 |
|
Mark Andrews
|
0c27b3fe77
|
4401. [misc] Change LICENSE to MPL 2.0.
|
2016-06-27 14:56:38 +10:00 |
|
Mark Andrews
|
e0a30050c8
|
4214. [protocol] Add support for TALINK. [RT #40544]
|
2015-09-18 07:43:43 +10:00 |
|
Tinderbox User
|
503ffdad3b
|
update copyright notice / whitespace
|
2015-08-17 23:45:35 +00:00 |
|
Mukund Sivaraman
|
b0ba1a6059
|
Use mnemonics for RR class and type comparisons (#40297)
|
2015-08-17 12:23:35 +05:30 |
|
Tinderbox User
|
b941edbeb5
|
update copyright notice
|
2013-01-09 23:45:53 +00:00 |
|
Mark Andrews
|
f1c1aab2c9
|
3457. [protocol] Add ILNP records (NID, LP, L32, L64). [RT #31836]
|
2013-01-10 08:26:31 +11:00 |
|