]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Underflow is ok
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 25 May 2017 19:50:09 +0000 (15:50 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 25 May 2017 19:50:09 +0000 (15:50 -0400)
src/modules/rlm_eap/types/rlm_eap_fast/eap_fast.c

index 71f3492c0665c3ae6e3c3aa54f7aa67d3a39d932..b018d181d355fa6e3845ee61d62bec9cb8462a20 100644 (file)
@@ -79,7 +79,7 @@ static void eap_fast_update_icmk(REQUEST *request, tls_session_t *tls_session, u
 
        RDEBUG2("Updating ICMK");
 
-       T_PRF(t->s_imck, EAP_FAST_SIMCK_LEN, "Inner Methods Compound Keys", msk, 32, imck, sizeof(imck));
+       T_PRF(t->s_imck, EAP_FAST_SIMCK_LEN, "Inner Methods Compound Keys", msk, 32, imck, sizeof(imck));       //-V512
 
        memcpy(t->s_imck, imck, EAP_FAST_SIMCK_LEN);
        RHEXDUMP(L_DBG_LVL_MAX, t->s_imck, EAP_FAST_SIMCK_LEN, "S-IMCK[j]");