From c5e0b3a6d5f02aa53cf2a7c0cffb42e434ee3470 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Tue, 30 Oct 2018 20:57:53 +0100 Subject: [PATCH] Fix error handling in rand_drbg_new Reviewed-by: Matthias St. Pierre Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/7517) --- crypto/rand/drbg_lib.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crypto/rand/drbg_lib.c b/crypto/rand/drbg_lib.c index f518ce5138..cd298a7e16 100644 --- a/crypto/rand/drbg_lib.c +++ b/crypto/rand/drbg_lib.c @@ -295,10 +295,7 @@ static RAND_DRBG *rand_drbg_new(int secure, return drbg; err: - if (drbg->secure) - OPENSSL_secure_free(drbg); - else - OPENSSL_free(drbg); + RAND_DRBG_free(drbg); return NULL; } -- 2.25.1