From c40c1ef4f3c3a6a4d7878bbf8b13742a5bffd963 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Fri, 2 Nov 2018 11:46:38 +0100 Subject: [PATCH] Fix error handling in RAND_DRBG_uninstantiate Reviewed-by: Matthias St. Pierre Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/7519) --- crypto/rand/drbg_lib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/rand/drbg_lib.c b/crypto/rand/drbg_lib.c index 1471681cf4..73fd942914 100644 --- a/crypto/rand/drbg_lib.c +++ b/crypto/rand/drbg_lib.c @@ -374,6 +374,7 @@ int RAND_DRBG_instantiate(RAND_DRBG *drbg, int RAND_DRBG_uninstantiate(RAND_DRBG *drbg) { if (drbg->meth == NULL) { + drbg->state = DRBG_ERROR; RANDerr(RAND_F_RAND_DRBG_UNINSTANTIATE, RAND_R_NO_DRBG_IMPLEMENTATION_SELECTED); return 0; -- 2.25.1