diff --git a/fuzzers/074-dump_all/run_fuzzer.py b/fuzzers/074-dump_all/run_fuzzer.py index cfd43cd3..41ced3d1 100644 --- a/fuzzers/074-dump_all/run_fuzzer.py +++ b/fuzzers/074-dump_all/run_fuzzer.py @@ -53,7 +53,7 @@ def run_pool(itemcount, nbBlocks, blocksize, nbParBlock, workFunc): # We handle the case of not integer multiple of pips intitemcount = blocksize * nbBlocks lastRun = False - modBlocks = itemcount % nbBlocks + modBlocks = itemcount - intitemcount if modBlocks != 0: lastRun = True nbBlocks = nbBlocks + 1