Merge pull request #7229 from kaleb-himes/win-code-up

Windows doesn't like code before variables
This commit is contained in:
David Garske
2024-02-14 09:50:34 -08:00
committed by GitHub

View File

@@ -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)