diff options
author | van Hauser <vh@thc.org> | 2021-12-11 13:00:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 13:00:19 +0100 |
commit | 5ec91ad5291228f6ef6d9b69605a9b752ef28fa0 (patch) | |
tree | 03d433f881e6c49dbfd6e6093a6943937a07dec7 /src/afl-fuzz-init.c | |
parent | 74aa826b60601eb59038bf61298b07eb20944caa (diff) | |
parent | 602eafc223d76987e447b431fc75903147a40c38 (diff) | |
download | afl++-5ec91ad5291228f6ef6d9b69605a9b752ef28fa0.tar.gz |
Merge pull request #1205 from yuawn/rename
rename active_paths
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 3a0e0801..e4b83fa5 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -920,7 +920,7 @@ void perform_dry_run(afl_state_t *afl) { q->was_fuzzed = 1; --afl->pending_not_fuzzed; - --afl->active_paths; + --afl->active_items; } @@ -1051,7 +1051,7 @@ void perform_dry_run(afl_state_t *afl) { q->was_fuzzed = 1; --afl->pending_not_fuzzed; - --afl->active_paths; + --afl->active_items; } @@ -1162,7 +1162,7 @@ void perform_dry_run(afl_state_t *afl) { p->was_fuzzed = 1; --afl->pending_not_fuzzed; - --afl->active_paths; + --afl->active_items; } @@ -1175,7 +1175,7 @@ void perform_dry_run(afl_state_t *afl) { q->was_fuzzed = 1; --afl->pending_not_fuzzed; - --afl->active_paths; + --afl->active_items; } |