removed requirement that offset be less than windowSize
diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c
index 347bc1b..e2b0986 100644
--- a/tests/decodecorpus.c
+++ b/tests/decodecorpus.c
@@ -685,7 +685,7 @@
/* 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 = MIN(frame->header.windowSize, offset+lenPastStart);
+ offset = offset+lenPastStart;
}
offsetCode = offset + ZSTD_REP_MOVE;
repIndex = 2;