Check psa_destroy_key() return in rsa_decrypt_wrap()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-02-24 15:17:47 +01:00
parent 18f43c7304
commit f1b564bb8d

View File

@ -283,7 +283,10 @@ static int rsa_decrypt_wrap( void *ctx,
ret = 0;
cleanup:
psa_destroy_key( key_id );
status = psa_destroy_key( key_id );
if( ret == 0 && status != PSA_SUCCESS )
ret = mbedtls_psa_err_translate_pk( status );
return( ret );
}
#else