summaryrefslogtreecommitdiffstats
path: root/test/cmp_protect_test.c
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-08-12 20:24:26 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-08-21 09:04:09 +0200
commit06cee80a843cae6bcb2dcba7eab26c963e10f825 (patch)
treeef5df87115cca88e27ee82d0ce2c57ba7757e1c4 /test/cmp_protect_test.c
parent1a7ceb6c74d930fd5dfbcd06350b4cef0228936b (diff)
testutil: Make SETUP_TEST_FIXTURE return 0 on fixture == NULL
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11808)
Diffstat (limited to 'test/cmp_protect_test.c')
-rw-r--r--test/cmp_protect_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/cmp_protect_test.c b/test/cmp_protect_test.c
index 1d1e009aca..eed850ee57 100644
--- a/test/cmp_protect_test.c
+++ b/test/cmp_protect_test.c
@@ -252,9 +252,10 @@ static int test_MSG_protect_with_certificate_and_key(void)
static int test_MSG_protect_certificate_based_without_cert(void)
{
- SETUP_TEST_FIXTURE(CMP_PROTECT_TEST_FIXTURE, set_up);
- OSSL_CMP_CTX *ctx = fixture->cmp_ctx;
+ OSSL_CMP_CTX *ctx;
+ SETUP_TEST_FIXTURE(CMP_PROTECT_TEST_FIXTURE, set_up);
+ ctx = fixture->cmp_ctx;
fixture->expected = 0;
if (!TEST_ptr(fixture->msg =
OSSL_CMP_MSG_dup(ir_unprotected))