fix fuzz bug

This commit is contained in:
simon987 2020-11-25 15:33:01 -05:00
parent b0de37d4f9
commit 2d74f61553

View File

@ -26,7 +26,7 @@ def fuzz(buf: bytes, n: int, width: int):
i = random.randint(0, len(buf))
for off in range(width):
if i + off < len(buf):
fuzzed[i + off] = fuzzed[i + off] + 1
fuzzed[i + off] = random.randint(0, 255)
return fuzzed