From 9012317f5bdcf4b63b499a8a9f7baee2b15562a2 Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 21 Jan 2021 17:41:11 -0800 Subject: [PATCH] Fix copy/paste typo. --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index 4b6cf2c00..76e607e51 100644 --- a/tests/api.c +++ b/tests/api.c @@ -15464,7 +15464,7 @@ static int test_wc_RsaSSL_SignVerify (void) DECLARE_VAR(plain, byte, plainSz, NULL); #ifdef DECLARE_VAR_IS_HEAP_ALLOC - if (in == NULL || plain == NULL || cipher == NULL) { + if (in == NULL || out == NULL || plain == NULL) { printf("test_wc_RsaSSL_SignVerify failed\n"); return MEMORY_E; }