commit | 9658391073f235e9192a8756ce8b08858dbeaf71 | [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:19:32 2015 +0000 |
tree | b1495db48c90bca155d567c4c75aed818d0d0bc2 | |
parent | 0bf112e7dc681d4dc856a7871917c072d5ef55f2 [diff] [blame] |
Fix use of deprecated function in the library
diff --git a/library/hmac_drbg.c b/library/hmac_drbg.c index 8b73dfd..dc26b0d 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 ) ); }