aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-08-12 18:19:50 -0400
committerRich Salz <rsalz@openssl.org>2017-08-13 15:52:30 -0400
commitbc5145e372db24e8382c34fd191614805164b28b (patch)
treed71666c4c0df4a758a20595f1344f4fef20ee088 /crypto
parentbdcacd93b14ed7381a922b41d74c481224ef9fa1 (diff)
downloadopenssl-bc5145e372db24e8382c34fd191614805164b28b.tar.gz
Instantiate when RAND_status() checks
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/4150)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/rand/drbg_lib.c2
1 files changed, 2 insertions, 0 deletions
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;