forked from wolfSSL/wolfssl
Merge pull request #7229 from kaleb-himes/win-code-up
Windows doesn't like code before variables
This commit is contained in:
@@ -4589,10 +4589,11 @@ void fp_clear(fp_int *a)
|
|||||||
|
|
||||||
void fp_forcezero (mp_int * a)
|
void fp_forcezero (mp_int * a)
|
||||||
{
|
{
|
||||||
|
int size;
|
||||||
|
|
||||||
if (a == NULL)
|
if (a == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int size;
|
|
||||||
a->used = 0;
|
a->used = 0;
|
||||||
a->sign = FP_ZPOS;
|
a->sign = FP_ZPOS;
|
||||||
#if defined(ALT_ECC_SIZE) || defined(HAVE_WOLF_BIGINT)
|
#if defined(ALT_ECC_SIZE) || defined(HAVE_WOLF_BIGINT)
|
||||||
|
Reference in New Issue
Block a user