mirror of https://github.com/wolfSSL/wolfssl.git
add semicolon after FALL_THROUGH
parent
02df920269
commit
2cc89936e3
|
@ -8295,7 +8295,7 @@ int wc_PKCS7_DecodeEncryptedData(PKCS7* pkcs7, byte* in, word32 inSz,
|
|||
}
|
||||
#endif
|
||||
pkcs7->state = WC_PKCS7_STAGE2;
|
||||
FALL_THROUGH
|
||||
FALL_THROUGH;
|
||||
/* end of stage 1 */
|
||||
|
||||
case WC_PKCS7_STAGE2:
|
||||
|
@ -8336,7 +8336,7 @@ int wc_PKCS7_DecodeEncryptedData(PKCS7* pkcs7, byte* in, word32 inSz,
|
|||
}
|
||||
#endif
|
||||
pkcs7->state = WC_PKCS7_STAGE3;
|
||||
FALL_THROUGH
|
||||
FALL_THROUGH;
|
||||
/* end of stage 2 */
|
||||
|
||||
case WC_PKCS7_STAGE3:
|
||||
|
@ -8392,7 +8392,7 @@ int wc_PKCS7_DecodeEncryptedData(PKCS7* pkcs7, byte* in, word32 inSz,
|
|||
pkcs7->stream->vers = version;
|
||||
#endif
|
||||
pkcs7->state = WC_PKCS7_STAGE4;
|
||||
FALL_THROUGH
|
||||
FALL_THROUGH;
|
||||
/* end of stage 3 */
|
||||
|
||||
/* get block cipher IV, stored in OPTIONAL parameter of AlgoID */
|
||||
|
@ -8439,7 +8439,7 @@ int wc_PKCS7_DecodeEncryptedData(PKCS7* pkcs7, byte* in, word32 inSz,
|
|||
}
|
||||
#endif
|
||||
pkcs7->state = WC_PKCS7_STAGE5;
|
||||
FALL_THROUGH
|
||||
FALL_THROUGH;
|
||||
/* end of stage 4 */
|
||||
|
||||
case WC_PKCS7_STAGE5:
|
||||
|
@ -8494,7 +8494,7 @@ int wc_PKCS7_DecodeEncryptedData(PKCS7* pkcs7, byte* in, word32 inSz,
|
|||
|
||||
#endif
|
||||
pkcs7->state = WC_PKCS7_STAGE6;
|
||||
FALL_THROUGH
|
||||
FALL_THROUGH;
|
||||
/* end of stage 5 */
|
||||
|
||||
case WC_PKCS7_STAGE6:
|
||||
|
|
Loading…
Reference in New Issue