mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
Fix break condition in decompression noise test
The bug prevents noise being added
This commit is contained in:
@ -1412,7 +1412,7 @@ static int fuzzerTests(U32 seed, U32 nbTests, unsigned startTest, U32 const maxD
|
|||||||
size_t const skipLength = FUZ_rand(&lseed) & mask;
|
size_t const skipLength = FUZ_rand(&lseed) & mask;
|
||||||
pos += skipLength;
|
pos += skipLength;
|
||||||
}
|
}
|
||||||
if (pos <= cSize) break;
|
if (pos >= cSize) break;
|
||||||
/* add noise */
|
/* add noise */
|
||||||
{ U32 const nbBitsCodes = FUZ_rand(&lseed) % maxNbBits;
|
{ U32 const nbBitsCodes = FUZ_rand(&lseed) % maxNbBits;
|
||||||
U32 const nbBits = nbBitsCodes ? nbBitsCodes-1 : 0;
|
U32 const nbBits = nbBitsCodes ? nbBitsCodes-1 : 0;
|
||||||
|
Reference in New Issue
Block a user