From bc5145e372db24e8382c34fd191614805164b28b Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sat, 12 Aug 2017 18:19:50 -0400 Subject: [PATCH] Instantiate when RAND_status() checks Reviewed-by: Kurt Roeckx (Merged from https://github.com/openssl/openssl/pull/4150) --- crypto/rand/drbg_lib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/rand/drbg_lib.c b/crypto/rand/drbg_lib.c index e9502db90d..0da4d48f55 100644 --- a/crypto/rand/drbg_lib.c +++ b/crypto/rand/drbg_lib.c @@ -403,6 +403,8 @@ static int drbg_status(void) int ret; CRYPTO_THREAD_write_lock(rand_drbg.lock); + if (rand_drbg.state == DRBG_UNINITIALISED) + RAND_DRBG_instantiate(&rand_drbg, NULL, 0); ret = rand_drbg.state == DRBG_READY ? 1 : 0; CRYPTO_THREAD_unlock(rand_drbg.lock); return ret; -- 2.25.1