From 9690b9737d46cc52cc93682a63b110f5513e7671 Mon Sep 17 00:00:00 2001 From: Pauli Date: Mon, 26 Sep 2022 10:02:46 +1000 Subject: [PATCH] Coverity 1515540: resource leak Reviewed-by: Hugo Landau Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19275) --- test/pkcs12_format_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/pkcs12_format_test.c b/test/pkcs12_format_test.c index bfb4ac058c5..0750f57e2f8 100644 --- a/test/pkcs12_format_test.c +++ b/test/pkcs12_format_test.c @@ -796,6 +796,7 @@ static int test_set0_attrs(void) return end_pkcs12_builder(pb); err: + (void)end_pkcs12_builder(pb); return 0; } -- 2.47.3