From 97beb77f319f119957235233396627bb22283da0 Mon Sep 17 00:00:00 2001 From: Pauli Date: Sun, 2 Jul 2023 17:19:17 +1000 Subject: fix memory allocation and reference counting issues Reviewed-by: Tomas Mraz Reviewed-by: Kurt Roeckx (Merged from https://github.com/openssl/openssl/pull/21341) --- crypto/evp/evp_rand.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crypto/evp') diff --git a/crypto/evp/evp_rand.c b/crypto/evp/evp_rand.c index e8dfd32ff7..03458a090f 100644 --- a/crypto/evp/evp_rand.c +++ b/crypto/evp/evp_rand.c @@ -78,7 +78,10 @@ static void *evp_rand_new(void) { EVP_RAND *rand = OPENSSL_zalloc(sizeof(*rand)); - if (rand == NULL || !CRYPTO_NEW_REF(&rand->refcnt, 1)) { + if (rand == NULL) + return NULL; + + if (!CRYPTO_NEW_REF(&rand->refcnt, 1)) { OPENSSL_free(rand); return NULL; } -- cgit v1.2.3