Change sizeof to variable rather than struct
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
2c363a802a
commit
70618b22a9
1 changed files with 1 additions and 1 deletions
|
@ -3822,7 +3822,7 @@ psa_status_t psa_aead_abort( psa_aead_operation_t *operation )
|
|||
|
||||
status = psa_driver_wrapper_aead_abort( operation );
|
||||
|
||||
memset( operation, 0, sizeof( psa_aead_operation_t ) );
|
||||
memset( operation, 0, sizeof( *operation ) );
|
||||
|
||||
return( status );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue