test.c:rsa_test(): fix uninited pointer

This commit is contained in:
Daniel Pouzzner
2020-08-26 20:32:44 -05:00
parent 6c32a730c2
commit a7381f8a48

View File

@@ -13015,7 +13015,7 @@ exit_rsa:
static int rsa_test(void)
{
int ret;
byte* tmp;
byte* tmp = NULL;
byte* der = NULL;
size_t bytes;
WC_RNG rng;