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-one.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-one.c')
-rw-r--r-- | src/afl-fuzz-one.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index ebf3f4ac..426a6507 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -547,7 +547,7 @@ u8 fuzz_one_original(afl_state_t *afl) { afl->queue_cur->perf_score = orig_perf = perf_score = calculate_score(afl, afl->queue_cur); - if (unlikely(perf_score <= 0 && afl->active_paths > 1)) { + if (unlikely(perf_score <= 0 && afl->active_items > 1)) { goto abandon_entry; @@ -3064,7 +3064,7 @@ static u8 mopt_common_fuzzing(afl_state_t *afl, MOpt_globals_t MOpt_globals) { else orig_perf = perf_score = calculate_score(afl, afl->queue_cur); - if (unlikely(perf_score <= 0 && afl->active_paths > 1)) { + if (unlikely(perf_score <= 0 && afl->active_items > 1)) { goto abandon_entry; |