mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
dictionary insert stage count bugfix
This commit is contained in:
@ -21,6 +21,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
|
|||||||
- all Python 2+3 versions supported now
|
- all Python 2+3 versions supported now
|
||||||
- changed execs_per_sec in fuzzer_stats from "current" execs per second
|
- changed execs_per_sec in fuzzer_stats from "current" execs per second
|
||||||
(which is pointless) to total execs per second
|
(which is pointless) to total execs per second
|
||||||
|
- bugfix for dictionary insert stage count (fix via Google repo PR)
|
||||||
- afl-clang-fast:
|
- afl-clang-fast:
|
||||||
- show in the help output for which llvm version it was compiled for
|
- show in the help output for which llvm version it was compiled for
|
||||||
- now does not need to be recompiled between trace-pc and pass
|
- now does not need to be recompiled between trace-pc and pass
|
||||||
|
@ -1474,7 +1474,7 @@ skip_interest:
|
|||||||
stage_name = "user extras (insert)";
|
stage_name = "user extras (insert)";
|
||||||
stage_short = "ext_UI";
|
stage_short = "ext_UI";
|
||||||
stage_cur = 0;
|
stage_cur = 0;
|
||||||
stage_max = extras_cnt * len;
|
stage_max = extras_cnt * (len + 1);
|
||||||
|
|
||||||
orig_hit_cnt = new_hit_cnt;
|
orig_hit_cnt = new_hit_cnt;
|
||||||
|
|
||||||
@ -3492,7 +3492,7 @@ skip_interest:
|
|||||||
stage_name = "user extras (insert)";
|
stage_name = "user extras (insert)";
|
||||||
stage_short = "ext_UI";
|
stage_short = "ext_UI";
|
||||||
stage_cur = 0;
|
stage_cur = 0;
|
||||||
stage_max = extras_cnt * len;
|
stage_max = extras_cnt * (len + 1);
|
||||||
|
|
||||||
orig_hit_cnt = new_hit_cnt;
|
orig_hit_cnt = new_hit_cnt;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user