added a fake initialization to please an analyzer

which is unable to understand that the variable is necessarily initialized
in spite of an assert just before.
This commit is contained in:
Yann Collet 2019-04-15 11:17:35 -07:00
parent 98e5c0062f
commit ac5d2629c1

View File

@ -920,7 +920,7 @@ int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressi
unsigned const maxBits = MAX(3, suggestedBits);
unsigned const nonContiguousDst = FUZ_rand(&randState) % 3; /* 0 : contiguous; 1 : non-contiguous; 2 : dst overwritten */
size_t totalOut = 0;
size_t decSize;
size_t decSize = 0;
XXH64_state_t xxh64;
XXH64_reset(&xxh64, 1);
assert(ip < iend);