Skip to content

Commit 375415d

Browse files
authored
Merge pull request #7229 from kaleb-himes/win-code-up
Windows doesn't like code before variables
2 parents 3b6a769 + f567008 commit 375415d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

wolfcrypt/src/tfm.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4589,10 +4589,11 @@ void fp_clear(fp_int *a)
45894589

45904590
void fp_forcezero (mp_int * a)
45914591
{
4592+
int size;
4593+
45924594
if (a == NULL)
45934595
return;
45944596

4595-
int size;
45964597
a->used = 0;
45974598
a->sign = FP_ZPOS;
45984599
#if defined(ALT_ECC_SIZE) || defined(HAVE_WOLF_BIGINT)

0 commit comments

Comments
 (0)