mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
fix IGNORE_PROBLEMS and update qemuafl
This commit is contained in:
@ -672,12 +672,11 @@ void show_stats_normal(afl_state_t *afl) {
|
||||
/* If no coverage was found yet, check whether run time is greater than
|
||||
* exit_on_time. */
|
||||
|
||||
if (unlikely(
|
||||
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||
((afl->last_find_time &&
|
||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||
(!afl->last_find_time && (cur_ms - afl->start_time)
|
||||
> afl->exit_on_time)))) {
|
||||
if (unlikely(!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||
((afl->last_find_time &&
|
||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||
(!afl->last_find_time &&
|
||||
(cur_ms - afl->start_time) > afl->exit_on_time)))) {
|
||||
|
||||
afl->stop_soon = 2;
|
||||
|
||||
@ -1476,12 +1475,11 @@ void show_stats_pizza(afl_state_t *afl) {
|
||||
/* If no coverage was found yet, check whether run time is greater than
|
||||
* exit_on_time. */
|
||||
|
||||
if (unlikely(
|
||||
!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||
((afl->last_find_time &&
|
||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||
(!afl->last_find_time && (cur_ms - afl->start_time)
|
||||
> afl->exit_on_time)))) {
|
||||
if (unlikely(!afl->non_instrumented_mode && afl->afl_env.afl_exit_on_time &&
|
||||
((afl->last_find_time &&
|
||||
(cur_ms - afl->last_find_time) > afl->exit_on_time) ||
|
||||
(!afl->last_find_time &&
|
||||
(cur_ms - afl->start_time) > afl->exit_on_time)))) {
|
||||
|
||||
afl->stop_soon = 2;
|
||||
|
||||
|
Reference in New Issue
Block a user