mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
fix for fall through with gcc-7
This commit is contained in:
committed by
David Garske
parent
62a2847d75
commit
77a1dafed0
@ -9663,7 +9663,6 @@ WOLFSSL_API int wc_PKCS7_DecodeAuthEnvelopedData(PKCS7* pkcs7, byte* in,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
wc_PKCS7_ChangeState(pkcs7, WC_PKCS7_AUTHENV_ATRB);
|
wc_PKCS7_ChangeState(pkcs7, WC_PKCS7_AUTHENV_ATRB);
|
||||||
FALL_THROUGH;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#ifndef NO_PKCS7_STREAM
|
#ifndef NO_PKCS7_STREAM
|
||||||
@ -9673,6 +9672,7 @@ WOLFSSL_API int wc_PKCS7_DecodeAuthEnvelopedData(PKCS7* pkcs7, byte* in,
|
|||||||
#endif
|
#endif
|
||||||
goto authenv_atrbend; /* jump over attribute cases */
|
goto authenv_atrbend; /* jump over attribute cases */
|
||||||
}
|
}
|
||||||
|
FALL_THROUGH;
|
||||||
|
|
||||||
case WC_PKCS7_AUTHENV_ATRB:
|
case WC_PKCS7_AUTHENV_ATRB:
|
||||||
#ifndef NO_PKCS7_STREAM
|
#ifndef NO_PKCS7_STREAM
|
||||||
|
Reference in New Issue
Block a user