From: Peiwei Hu Date: Wed, 15 Dec 2021 09:29:49 +0000 (+0800) Subject: test/cmp_vfy_test.c: free before return X-Git-Tag: openssl-3.2.0-alpha1~3186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=869b7dd00046951efb06dbb13c052ff9d7c87113;p=thirdparty%2Fopenssl.git test/cmp_vfy_test.c: free before return Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17279) --- diff --git a/test/cmp_vfy_test.c b/test/cmp_vfy_test.c index a4800903637..5aa6a008ccb 100644 --- a/test/cmp_vfy_test.c +++ b/test/cmp_vfy_test.c @@ -51,11 +51,13 @@ static time_t test_time_valid = 0, test_time_after_expiration = 0; static CMP_VFY_TEST_FIXTURE *set_up(const char *const test_case_name) { - X509_STORE *ts = X509_STORE_new(); + X509_STORE *ts; CMP_VFY_TEST_FIXTURE *fixture; if (!TEST_ptr(fixture = OPENSSL_zalloc(sizeof(*fixture)))) return NULL; + + ts = X509_STORE_new(); fixture->test_case_name = test_case_name; if (ts == NULL || !TEST_ptr(fixture->cmp_ctx = OSSL_CMP_CTX_new(libctx, NULL))