mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
fix -n
This commit is contained in:
@ -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:
|
||||||
|
@ -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,
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Submodule unicorn_mode/unicornafl updated: 019b871539...c0e03d2c6b
Reference in New Issue
Block a user