commit | 4a760882bb45a937a1dc97965e7b6a9fe92fbf7a | [log] [tgz] |
---|---|---|
author | Paul Elliott <paul.elliott@arm.com> | Mon Sep 20 09:42:21 2021 +0100 |
committer | Paul Elliott <paul.elliott@arm.com> | Mon Sep 20 09:43:46 2021 +0100 |
tree | c02102f4e1ab6cc02958ac4e3b6073fe571d303c | |
parent | 6043e49039ff221cdfc7d71b209e796cf1e4f5e7 [diff] |
Fix leaked test buffer Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/tests/suites/test_suite_psa_crypto.function b/tests/suites/test_suite_psa_crypto.function index a240df7..2feadf8 100644 --- a/tests/suites/test_suite_psa_crypto.function +++ b/tests/suites/test_suite_psa_crypto.function
@@ -4060,6 +4060,7 @@ psa_destroy_key( key ); mbedtls_free( ciphertext ); mbedtls_free( finish_ciphertext ); + mbedtls_free( tag_buffer ); psa_aead_abort( &operation ); PSA_DONE( ); }