Minor edit to comply with pointer naming standard
Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
This commit is contained in:
parent
f5a5e45ed1
commit
00106a12c9
1 changed files with 3 additions and 3 deletions
|
@ -190,13 +190,13 @@ psa_status_t psa_validate_key_location( const psa_key_attributes_t *attributes,
|
|||
if ( psa_key_lifetime_is_external( lifetime ) )
|
||||
{
|
||||
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
||||
psa_se_drv_table_entry_t *p_drv_e = psa_get_se_driver_entry( lifetime );
|
||||
if( p_drv_e == NULL )
|
||||
psa_se_drv_table_entry_t *driver = psa_get_se_driver_entry( lifetime );
|
||||
if( driver == NULL )
|
||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||
else
|
||||
{
|
||||
if (p_drv != NULL)
|
||||
*p_drv = p_drv_e;
|
||||
*p_drv = driver;
|
||||
return( PSA_SUCCESS );
|
||||
}
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue