From f106fea0d81c0ef9ef84d935e83017ed71695d47 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 27 Aug 2020 01:42:18 -0500 Subject: [PATCH] rsa_no_pad_test(): fix uninited pointer. --- 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 536741771..1474462ce 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -12227,7 +12227,7 @@ static int rsa_no_pad_test(void) { WC_RNG rng; RsaKey key; - byte* tmp; + byte* tmp = NULL; size_t bytes; int ret; word32 inLen = 0;