1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Remove superfluous calls to psa_hash_abort

Calls were not required since psa_hash_setup was yet
to be called.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney
2023-07-28 14:33:20 +01:00
parent 6fc4ca2d85
commit a79f806225

View File

@@ -69,8 +69,6 @@ int main(void)
status = psa_crypto_init();
if (status != PSA_SUCCESS) {
mbedtls_printf("psa_crypto_init failed\n");
psa_hash_abort(&psa_hash_operation);
psa_hash_abort(&cloned_psa_hash_operation);
return EXIT_FAILURE;
}