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>
diff --git a/programs/psa/psa_hash.c b/programs/psa/psa_hash.c
index 5c565db..59375c2 100644
--- a/programs/psa/psa_hash.c
+++ b/programs/psa/psa_hash.c
@@ -69,8 +69,6 @@
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;
}