mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
dictionary insert stage count bugfix
This commit is contained in:
@ -1474,7 +1474,7 @@ skip_interest:
|
||||
stage_name = "user extras (insert)";
|
||||
stage_short = "ext_UI";
|
||||
stage_cur = 0;
|
||||
stage_max = extras_cnt * len;
|
||||
stage_max = extras_cnt * (len + 1);
|
||||
|
||||
orig_hit_cnt = new_hit_cnt;
|
||||
|
||||
@ -3492,7 +3492,7 @@ skip_interest:
|
||||
stage_name = "user extras (insert)";
|
||||
stage_short = "ext_UI";
|
||||
stage_cur = 0;
|
||||
stage_max = extras_cnt * len;
|
||||
stage_max = extras_cnt * (len + 1);
|
||||
|
||||
orig_hit_cnt = new_hit_cnt;
|
||||
|
||||
|
Reference in New Issue
Block a user