From: Pauli Date: Mon, 26 Sep 2022 00:02:46 +0000 (+1000) Subject: Coverity 1515540: resource leak X-Git-Tag: openssl-3.2.0-alpha1~2009 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9690b9737d46cc52cc93682a63b110f5513e7671;p=thirdparty%2Fopenssl.git Coverity 1515540: resource leak Reviewed-by: Hugo Landau Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19275) --- 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; }