mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
rsa_no_pad_test(): fix uninited pointer.
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user