Skip to content

Commit

Permalink
Merged PR 6722923: Fix false positive use of uninitialized variable e…
Browse files Browse the repository at this point in the history
…rror

Fix false positive use of uninitialized variable error
  • Loading branch information
mlindgren committed Dec 1, 2021
1 parent 8ecd793 commit 31fb2e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fdef_general.c
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ SymCryptFdefCreateTrialDivisionContext( UINT32 nDigits )
UINT64 tmp64;
UINT32 maxPrime;
UINT32 minPrime;
UINT32 nSmallPrimes;
UINT32 nSmallPrimes = 0;
UINT32 n;
UINT32 nP;
UINT32 nG;
Expand Down

0 comments on commit 31fb2e9

Please sign in to comment.