From 8c63b14296f117b07781509ced529a8955d78fb9 Mon Sep 17 00:00:00 2001 From: Kovalev Vasiliy Date: Thu, 4 May 2023 16:12:33 +0400 Subject: Fix memory leak in engine_cleanup_add_first() Fixes #20870 Reviewed-by: Tom Cosgrove Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/20880) --- crypto/engine/eng_lib.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crypto/engine') diff --git a/crypto/engine/eng_lib.c b/crypto/engine/eng_lib.c index 40e0413a26..b10751336f 100644 --- a/crypto/engine/eng_lib.c +++ b/crypto/engine/eng_lib.c @@ -140,8 +140,9 @@ void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb) if (!int_cleanup_check(1)) return; item = int_cleanup_item(cb); - if (item) - sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0); + if (item != NULL) + if (sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0) <= 0) + OPENSSL_free(item); } void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb) -- cgit v1.2.1