rsa_no_pad_test(): fix uninited pointer.

This commit is contained in:
Daniel Pouzzner
2020-08-27 01:42:18 -05:00
parent 4ea8b46177
commit f106fea0d8

View File

@ -12227,7 +12227,7 @@ static int rsa_no_pad_test(void)
{ {
WC_RNG rng; WC_RNG rng;
RsaKey key; RsaKey key;
byte* tmp; byte* tmp = NULL;
size_t bytes; size_t bytes;
int ret; int ret;
word32 inLen = 0; word32 inLen = 0;