Skip to content

Commit

Permalink
fix OBOB
Browse files Browse the repository at this point in the history
  • Loading branch information
agroce committed Aug 25, 2024
1 parent dceb4e7 commit f4eaa7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion muttfuzz/fuzzutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def fuzz_with_mutants(fuzzer_cmd, executable, budget, time_per_mutant, fraction_
break
else:
print(round(time.time() - start_fuzz, 2), "ELAPSED: APPLYING MUTANT #" + str(mutant_no))
if stop_on_repeat and ((mutant_no + 1) >= len(metadatas)):
if stop_on_repeat and ((mutant_no - 1) >= len(metadatas)):
print("FORCED TO REPEAT A MUTANT, STOPPING ANALYSIS")
break
if avoid_repeats:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='muttfuzz',
version='1.2.27',
version='1.2.28',
description='Fuzzing with mutants',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
Expand Down

0 comments on commit f4eaa7e

Please sign in to comment.