From: Arran Cudbard-Bell Date: Fri, 30 Aug 2019 04:54:54 +0000 (-0400) Subject: smb_ctrl can be NULL X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbf9ef935275fc6ebdf563f64f8cffc5766ea535;p=thirdparty%2Ffreeradius-server.git smb_ctrl can be NULL --- diff --git a/src/modules/rlm_mschap/rlm_mschap.c b/src/modules/rlm_mschap/rlm_mschap.c index 8d16f1501d0..a2081bc599f 100644 --- a/src/modules/rlm_mschap/rlm_mschap.c +++ b/src/modules/rlm_mschap/rlm_mschap.c @@ -1699,7 +1699,7 @@ static rlm_rcode_t CC_HINT(nonnull) mschap_process_cpw_request(rlm_mschap_t cons return RLM_MODULE_OK; } -static rlm_rcode_t CC_HINT(nonnull(1,2,3,4,5,7,8)) mschap_process_response(int *mschap_version, +static rlm_rcode_t CC_HINT(nonnull(1,2,3,4,7,8)) mschap_process_response(int *mschap_version, uint8_t nthashhash[static NT_DIGEST_LENGTH], rlm_mschap_t const *inst, REQUEST *request, @@ -1753,7 +1753,7 @@ static rlm_rcode_t CC_HINT(nonnull(1,2,3,4,5,7,8)) mschap_process_response(int * return mschap_error(inst, request, *response->vp_octets, mschap_result, *mschap_version, smb_ctrl); } -static rlm_rcode_t CC_HINT(nonnull(1,2,3,4,5,7,8)) mschap_process_v2_response(int *mschap_version, +static rlm_rcode_t CC_HINT(nonnull(1,2,3,4,7,8)) mschap_process_v2_response(int *mschap_version, uint8_t nthashhash[static NT_DIGEST_LENGTH], rlm_mschap_t const *inst, REQUEST *request,