mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 12:48:06 +00:00
fix ui fuzzing stage index (#960)
This commit is contained in:
@ -1017,9 +1017,10 @@ void show_stats(afl_state_t *afl) {
|
|||||||
if (unlikely(afl->afl_env.afl_custom_mutator_library)) {
|
if (unlikely(afl->afl_env.afl_custom_mutator_library)) {
|
||||||
|
|
||||||
strcat(tmp, " ");
|
strcat(tmp, " ");
|
||||||
strcat(tmp, u_stringify_int(IB(2), afl->stage_finds[STAGE_PYTHON]));
|
strcat(tmp, u_stringify_int(IB(2), afl->stage_finds[STAGE_CUSTOM_MUTATOR]));
|
||||||
strcat(tmp, "/");
|
strcat(tmp, "/");
|
||||||
strcat(tmp, u_stringify_int(IB(3), afl->stage_cycles[STAGE_PYTHON]));
|
strcat(tmp,
|
||||||
|
u_stringify_int(IB(3), afl->stage_cycles[STAGE_CUSTOM_MUTATOR]));
|
||||||
strcat(tmp, ",");
|
strcat(tmp, ",");
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user