From: Arran Cudbard-Bell Date: Thu, 14 Dec 2017 18:40:42 +0000 (+0000) Subject: data can be null X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=443e361c23f129b287a44e518104ea2942fcd76c;p=thirdparty%2Ffreeradius-server.git data can be null --- diff --git a/src/include/cf_parse.h b/src/include/cf_parse.h index e9283d1492d..ac01d379706 100644 --- a/src/include/cf_parse.h +++ b/src/include/cf_parse.h @@ -452,7 +452,7 @@ struct CONF_PARSER { * Type validation and conversion */ int cf_pair_parse(TALLOC_CTX *ctx, CONF_SECTION *cs, char const *name, - unsigned int type, void *data, char const *dflt, FR_TOKEN dflt_quote) CC_HINT(nonnull(2,3,5)); + unsigned int type, void *data, char const *dflt, FR_TOKEN dflt_quote) CC_HINT(nonnull(2,3)); int cf_section_parse(TALLOC_CTX *ctx, void *base, CONF_SECTION *cs); int cf_section_parse_pass2(void *base, CONF_SECTION *cs); CONF_PARSER const *cf_section_parse_table(CONF_SECTION *cs);