mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-07 19:30:45 +00:00
Merge pull request #3435 from paul-elliott-arm/fix_dangerous_parameters
Remove Dangerous Parameter Passing
This commit is contained in:
commit
25c7dbe342
|
@ -270,7 +270,7 @@ void persistent_slot_lifecycle( int lifetime_arg, int id_arg,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
TEST_EQUAL( psa_export_key( handle,
|
TEST_EQUAL( psa_export_key( handle,
|
||||||
reexported, sizeof( reexported ),
|
NULL, 0,
|
||||||
&reexported_length ),
|
&reexported_length ),
|
||||||
PSA_ERROR_NOT_PERMITTED );
|
PSA_ERROR_NOT_PERMITTED );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue