mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 15:58:12 +00:00
Fix use of deprecated function in the library
This commit is contained in:
parent
e658176dfa
commit
9395298d12
1 changed files with 1 additions and 1 deletions
|
@ -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 ) );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue