1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-07-27 13:36:01 +08:00

Merge pull request #316 from Patater/stop-reentrant-transaction

Stop transactions from being reentrant
This commit is contained in:
Jaeden Amero 2019-11-08 14:59:39 +00:00 committed by GitHub
commit b14a4ff840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -419,7 +419,7 @@ psa_status_t psa_crypto_save_transaction( void )
{ {
struct psa_storage_info_t p_info; struct psa_storage_info_t p_info;
psa_status_t status; psa_status_t status;
status = psa_its_get_info( PSA_CRYPTO_ITS_RANDOM_SEED_UID, &p_info ); status = psa_its_get_info( PSA_CRYPTO_ITS_TRANSACTION_UID, &p_info );
if( status == PSA_SUCCESS ) if( status == PSA_SUCCESS )
{ {
/* This shouldn't happen: we're trying to start a transaction while /* This shouldn't happen: we're trying to start a transaction while