Fix use of deprecated function in the library

This commit is contained in:
Manuel Pégourié-Gonnard 2015-03-20 18:19:32 +00:00
parent 0bf112e7dc
commit 9658391073

View File

@ -314,7 +314,7 @@ void hmac_drbg_free( hmac_drbg_context *ctx )
if( ctx == NULL )
return;
md_free_ctx( &ctx->md_ctx );
md_free( &ctx->md_ctx );
polarssl_zeroize( ctx, sizeof( hmac_drbg_context ) );
}