mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 08:58:24 +00:00
Fix missing guard on XTS function in tests
This commit is contained in:
parent
9794098cfa
commit
af0c6cb9e0
1 changed files with 2 additions and 0 deletions
|
@ -402,7 +402,9 @@ void aes_valid_param( )
|
|||
{
|
||||
/* These calls accept NULL */
|
||||
TEST_VALID_PARAM( mbedtls_aes_free( NULL ) );
|
||||
#if defined(MBEDTLS_CIPHER_MODE_XTS)
|
||||
TEST_VALID_PARAM( mbedtls_aes_xts_free( NULL ) );
|
||||
#endif
|
||||
}
|
||||
/* END_CASE */
|
||||
|
||||
|
|
Loading…
Reference in a new issue