1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Fix incorrect conflict resolution

A return statement was missing in the wrapper generation script.

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2024-02-28 15:16:44 +00:00
parent 10e44f3fd1
commit 80de1475a1

View File

@ -171,7 +171,7 @@ class PSAWrapperGenerator(c_wrapper_generator.Base):
'psa_hash_verify',
'psa_hash_compute',
'psa_hash_compare'):
return True
if function_name == 'psa_generate_random':
return True
return False