Merge pull request #4215 from paul-elliott-arm/remove_fallthrough

Remove deliberate fallthrough
This commit is contained in:
Ronald Cron 2021-03-30 16:40:24 +02:00 committed by GitHub
commit 48ffe622f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,8 +92,8 @@ static inline psa_algorithm_t mbedtls_psa_translate_cipher_mode(
case MBEDTLS_MODE_CBC: case MBEDTLS_MODE_CBC:
if( taglen == 0 ) if( taglen == 0 )
return( PSA_ALG_CBC_NO_PADDING ); return( PSA_ALG_CBC_NO_PADDING );
/* Intentional fallthrough for taglen != 0 */ else
/* fallthrough */ return( 0 );
default: default:
return( 0 ); return( 0 );
} }
@ -151,7 +151,8 @@ static inline psa_algorithm_t mbedtls_psa_translate_md( mbedtls_md_type_t md_alg
case MBEDTLS_MD_RIPEMD160: case MBEDTLS_MD_RIPEMD160:
return( PSA_ALG_RIPEMD160 ); return( PSA_ALG_RIPEMD160 );
#endif #endif
case MBEDTLS_MD_NONE: /* Intentional fallthrough */ case MBEDTLS_MD_NONE:
return( 0 );
default: default:
return( 0 ); return( 0 );
} }