commit | 9395298d12bc197a6fd69c987edb2ec49873887b | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Fri Mar 20 18:19:32 2015 +0000 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Fri Mar 20 18:23:52 2015 +0000 |
tree | f9bf7f3301fbabfe466258028b94d64a0177415b | |
parent | e658176dfad4e30b6b2fdefbc0d465f30cb308e6 [diff] [blame] |
Fix use of deprecated function in the library
diff --git a/library/hmac_drbg.c b/library/hmac_drbg.c index fed297f..c7904d0 100644 --- a/library/hmac_drbg.c +++ b/library/hmac_drbg.c
@@ -314,7 +314,7 @@ if( ctx == NULL ) return; - md_free_ctx( &ctx->md_ctx ); + md_free( &ctx->md_ctx ); polarssl_zeroize( ctx, sizeof( hmac_drbg_context ) ); }