add semicolon after FALL_THROUGH

pull/1898/head
Jacob Barthelmeh 2018-10-09 09:56:57 -06:00 committed by David Garske
parent 02df920269
commit 2cc89936e3
1 changed files with 5 additions and 5 deletions

View File

@ -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: