This commit is contained in:
vanhauser-thc
2021-10-01 13:25:02 +02:00
parent 2eac714ac1
commit 4473904bc0
4 changed files with 6 additions and 4 deletions

View File

@ -15,6 +15,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
information on how to deal with instrumenting libraries information on how to deal with instrumenting libraries
- fix a regression introduced in 3.10 that resulted in less - fix a regression introduced in 3.10 that resulted in less
coverage being detected. thanks to Collin May for reporting! coverage being detected. thanks to Collin May for reporting!
- fix -n dumb mode (nobody should use this)
- afl-showmap, afl-tmin and afl-analyze now honor persistent mode - afl-showmap, afl-tmin and afl-analyze now honor persistent mode
for more speed. thanks to dloffre-snl for reporting! for more speed. thanks to dloffre-snl for reporting!
- afl-cc: - afl-cc:

View File

@ -560,8 +560,9 @@ void show_stats(afl_state_t *afl) {
/* Roughly every minute, update fuzzer stats and save auto tokens. */ /* Roughly every minute, update fuzzer stats and save auto tokens. */
if (unlikely(afl->force_ui_update || if (unlikely(!afl->non_instrumented_mode &&
cur_ms - afl->stats_last_stats_ms > STATS_UPDATE_SEC * 1000)) { (afl->force_ui_update ||
cur_ms - afl->stats_last_stats_ms > STATS_UPDATE_SEC * 1000))) {
afl->stats_last_stats_ms = cur_ms; afl->stats_last_stats_ms = cur_ms;
write_stats_file(afl, t_bytes, t_byte_ratio, stab_ratio, write_stats_file(afl, t_bytes, t_byte_ratio, stab_ratio,

View File

@ -1918,7 +1918,7 @@ int main(int argc, char **argv_orig, char **envp) {
} }
write_stats_file(afl, 0, 0, 0, 0); if (!afl->non_instrumented_mode) { write_stats_file(afl, 0, 0, 0, 0); }
maybe_update_plot_file(afl, 0, 0, 0); maybe_update_plot_file(afl, 0, 0, 0);
save_auto(afl); save_auto(afl);