Move the binSz check variable to a spot where it is only declared in the same condition it is used and initialize it to zero.

This commit is contained in:
John Safranek
2020-10-17 19:07:44 -07:00
parent fc86e6a960
commit 4f8c2b971f

View File

@@ -1237,6 +1237,7 @@ static int GeneratePublicDh(DhKey* key, byte* priv, word32 privSz,
{ {
int ret = 0; int ret = 0;
#ifndef WOLFSSL_SP_MATH #ifndef WOLFSSL_SP_MATH
word32 binSz = 0;
#ifdef WOLFSSL_SMALL_STACK #ifdef WOLFSSL_SMALL_STACK
mp_int* x; mp_int* x;
mp_int* y; mp_int* y;
@@ -1245,7 +1246,6 @@ static int GeneratePublicDh(DhKey* key, byte* priv, word32 privSz,
mp_int y[1]; mp_int y[1];
#endif #endif
#endif #endif
word32 binSz;
#ifdef WOLFSSL_HAVE_SP_DH #ifdef WOLFSSL_HAVE_SP_DH
#ifndef WOLFSSL_SP_NO_2048 #ifndef WOLFSSL_SP_NO_2048