Move zeroize func call to end of program in zeroize.c
This commit is contained in:
parent
0bd4237c2a
commit
88f8f41e5a
@ -79,13 +79,13 @@ int main( int argc, char** argv )
|
||||
if( p - buf != 0 )
|
||||
{
|
||||
mbedtls_printf( "%s\n", buf );
|
||||
mbedtls_zeroize( buf, sizeof( buf ) );
|
||||
exit_code = MBEDTLS_EXIT_SUCCESS;
|
||||
}
|
||||
else
|
||||
mbedtls_printf( "The file is empty!\n" );
|
||||
|
||||
fclose( fp );
|
||||
mbedtls_zeroize( buf, sizeof( buf ) );
|
||||
|
||||
return( exit_code );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user