Fix uninitialized

This commit is contained in:
Sean Parkinson
2018-05-29 09:56:34 +10:00
parent 68666101b7
commit f871bafe3a
2 changed files with 4 additions and 4 deletions

View File

@@ -3107,7 +3107,7 @@ int sp_RsaPublic_2048(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
byte* out, word32* outLen)
{
#ifdef WOLFSSL_SP_SMALL
sp_digit* d;
sp_digit* d = NULL;
sp_digit* a;
sp_digit* m;
sp_digit* r;
@@ -6476,7 +6476,7 @@ int sp_RsaPublic_3072(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
byte* out, word32* outLen)
{
#ifdef WOLFSSL_SP_SMALL
sp_digit* d;
sp_digit* d = NULL;
sp_digit* a;
sp_digit* m;
sp_digit* r;

View File

@@ -2530,7 +2530,7 @@ int sp_RsaPublic_2048(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
byte* out, word32* outLen)
{
#ifdef WOLFSSL_SP_SMALL
sp_digit* d;
sp_digit* d = NULL;
sp_digit* a;
sp_digit* m;
sp_digit* r;
@@ -5912,7 +5912,7 @@ int sp_RsaPublic_3072(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
byte* out, word32* outLen)
{
#ifdef WOLFSSL_SP_SMALL
sp_digit* d;
sp_digit* d = NULL;
sp_digit* a;
sp_digit* m;
sp_digit* r;