Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
Bug affecting job counts in afl-multicore fixed (reported by @fgeek).
Browse files Browse the repository at this point in the history
Refs #36
  • Loading branch information
rc0r committed Oct 25, 2016
1 parent 5e2dc35 commit f773296
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions afl_utils/afl_multicore.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ def get_master_count(conf_settings):
def get_started_instance_count(command, conf_settings):
instances_started = 0
if command == "add":
instances_started = 0
dirs = os.listdir(conf_settings["output"])
for d in dirs:
if os.path.isdir(os.path.abspath(os.path.join(conf_settings["output"], d))) \
Expand Down Expand Up @@ -357,7 +356,7 @@ def main(argv):

print_ok("Starting fuzzer instance(s)...")
jobs_offset += instances_started
jobs_count += instances_started + jobs_offset
jobs_count += jobs_offset
for i in range(jobs_offset, jobs_count, 1):
is_master = has_master(conf_settings, i)

Expand Down
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Version 1.32a
- Implemented option in afl-multicore to run arbitrary fuzzer instead
of default afl-fuzz (#35, suggested by Bhargava Shastry).
- Implemented multi-master mode support in afl-multicore (#36).
- Bug affecting job counts in afl-multicore fixed (reported by Henri
Salo).

Version 1.31a

Expand Down

0 comments on commit f773296

Please sign in to comment.