From d9eaeb4a3b7481c065f75a0e323419a413698874 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Thu, 8 Oct 2020 09:13:00 -0600 Subject: [PATCH] Fix NTRU + QSH build --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index 2c8e5c5c3..5751d900f 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -13119,7 +13119,7 @@ static int rsa_test(void) #ifdef WOLFSSL_SMALL_STACK RsaKey *caKey = (RsaKey *)XMALLOC(sizeof *caKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER); #else - RsaKey caKey_buf, caKey = &caKey_buf; + RsaKey caKey_buf, *caKey = &caKey_buf; #endif #endif #if !defined(NO_ASN) || !defined(WOLFSSL_RSA_PUBLIC_ONLY) \