From 434d4eb74f37ee3f6039b94751122c6974a1bca6 Mon Sep 17 00:00:00 2001 From: Neil Armstrong Date: Tue, 17 May 2022 11:58:22 +0200 Subject: [PATCH] Remove invalid comments in pk_can_do_ext() Signed-off-by: Neil Armstrong --- tests/suites/test_suite_pk.function | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/suites/test_suite_pk.function b/tests/suites/test_suite_pk.function index 057a2e68a..c7b514e3b 100644 --- a/tests/suites/test_suite_pk.function +++ b/tests/suites/test_suite_pk.function @@ -275,13 +275,9 @@ void pk_can_do_ext( int key_type, int key_usage, int key_alg, int key_alg2, TEST_EQUAL( mbedtls_pk_can_do_ext( &pk, alg_check ), result ); exit: - /* - * Key attributes may have been returned by psa_get_key_attributes() - * thus reset them as required. - */ psa_reset_key_attributes( &attributes ); PSA_ASSERT( psa_destroy_key( key ) ); - mbedtls_pk_free( &pk ); /* redundant except upon error */ + mbedtls_pk_free( &pk ); USE_PSA_DONE( ); } /* END_CASE */