From 9658391073f235e9192a8756ce8b08858dbeaf71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Fri, 20 Mar 2015 18:19:32 +0000 Subject: [PATCH] Fix use of deprecated function in the library --- library/hmac_drbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/hmac_drbg.c b/library/hmac_drbg.c index 8b73dfd2c..dc26b0d1a 100644 --- a/library/hmac_drbg.c +++ b/library/hmac_drbg.c @@ -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 ) ); }