From: Paul Cruz Date: Thu, 22 Jun 2017 01:13:52 +0000 (-0700) Subject: removed comment regarding windowSize requirement X-Git-Tag: v1.3.0~1^2~15^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52a13abf3fe9c6a1388e8e6fab9823345fa69642;p=thirdparty%2Fzstd.git removed comment regarding windowSize requirement --- diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index e2b098672..64185a13b 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -683,7 +683,6 @@ static U32 generateSequences(U32* seed, frame_t* frame, seqStore_t* seqStore, 1; if (info.useDict && (RAND(seed) & 1)) { /* need to occasionally generate offsets that go past the start */ - /* we still need to be within the windowSize however */ U32 const lenPastStart = RAND(seed) % info.dictContentSize; offset = offset+lenPastStart; }