1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Move zeroize func call to end of program in zeroize.c

This commit is contained in:
Andres Amaya Garcia
2017-10-31 21:27:59 +00:00
committed by Andres Amaya Garcia
parent 0bd4237c2a
commit 88f8f41e5a

View File

@ -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 );
}