From 54628d1ac10675d4554b58500341e35e8ac4fcbb Mon Sep 17 00:00:00 2001 From: Adriaan de Jong Date: Mon, 31 Oct 2011 16:29:14 +0100 Subject: Moved prng_uninit out of crypto_uninit_lib Since prng_uninit is SSL-library agnostic, but crypto_uninit_lib isn't, the function was moved up a level. Also removed one unused variable (j) in tls1_P_hash(). Signed-off-by: Adriaan de Jong Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- crypto.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto.c') diff --git a/crypto.c b/crypto.c index d17f706..375d35a 100644 --- a/crypto.c +++ b/crypto.c @@ -1388,6 +1388,7 @@ void free_ssl_lib (void) { crypto_uninit_lib (); + prng_uninit(); EVP_cleanup (); ERR_free_strings (); } -- cgit