mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-22 14:19:02 +00:00
Fix.
This commit is contained in:
@ -676,8 +676,8 @@ void show_stats_normal(afl_state_t *afl) {
|
|||||||
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||||
((afl->last_find_time &&
|
((afl->last_find_time &&
|
||||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||||
(!afl->last_find_time && (afl->prev_run_time + cur_ms -
|
(!afl->last_find_time && (cur_ms - afl->start_time)
|
||||||
afl->start_time) > afl->exit_on_time)))) {
|
> afl->exit_on_time)))) {
|
||||||
|
|
||||||
afl->stop_soon = 2;
|
afl->stop_soon = 2;
|
||||||
|
|
||||||
@ -1480,8 +1480,8 @@ void show_stats_pizza(afl_state_t *afl) {
|
|||||||
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||||
((afl->last_find_time &&
|
((afl->last_find_time &&
|
||||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||||
(!afl->last_find_time && (afl->prev_run_time + cur_ms -
|
(!afl->last_find_time && (cur_ms - afl->start_time)
|
||||||
afl->start_time) > afl->exit_on_time)))) {
|
> afl->exit_on_time)))) {
|
||||||
|
|
||||||
afl->stop_soon = 2;
|
afl->stop_soon = 2;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user