forked from wolfSSL/wolfssl
test.c:rsa_test(): fix uninited pointer
This commit is contained in:
@@ -13015,7 +13015,7 @@ exit_rsa:
|
|||||||
static int rsa_test(void)
|
static int rsa_test(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
byte* tmp;
|
byte* tmp = NULL;
|
||||||
byte* der = NULL;
|
byte* der = NULL;
|
||||||
size_t bytes;
|
size_t bytes;
|
||||||
WC_RNG rng;
|
WC_RNG rng;
|
||||||
|
Reference in New Issue
Block a user