fix stat display

This commit is contained in:
van Hauser
2020-03-21 17:42:00 +01:00
parent 350530f664
commit dcd9cd638b
3 changed files with 21 additions and 10 deletions

View File

@ -4,7 +4,6 @@
- get "no global vars" working
## Further down the road
afl-fuzz:
@ -13,6 +12,11 @@ afl-fuzz:
- ascii_only mode for mutation output
- setting min_len/max_len/start_offset/end_offset limits for mutation output
llvm_mode:
- added context sensitive branch coverage
- add CT cov and ngram cov to LTO and InsTrim
- better whitelist solution for LTO
gcc_plugin:
- laf-intel
- better instrumentation (seems to be better with gcc-9+)

View File

@ -1054,7 +1054,7 @@ static void handle_existing_out_dir(afl_state_t *afl) {
/* Let's see how much work is at stake. */
if (!afl->in_place_resume &&
if (!afl->in_place_resume && last_update > start_time2 &&
last_update - start_time2 > OUTPUT_GRACE * 60) {
SAYF("\n" cLRD "[-] " cRST

View File

@ -162,7 +162,11 @@ u8 *DTD(u8 *buf, size_t len, u64 cur_ms, u64 event_ms) {
s32 t_d, t_h, t_m, t_s;
u8 int_buf[16];
if (!event_ms) snprintf(buf, len, "none seen yet");
if (!event_ms) {
snprintf(buf, len, "none seen yet");
} else {
delta = cur_ms - event_ms;
@ -172,7 +176,10 @@ u8 *DTD(u8 *buf, size_t len, u64 cur_ms, u64 event_ms) {
t_s = (delta / 1000) % 60;
DI(int_buf, sizeof(int_buf), t_d);
snprintf(buf, len, "%s days, %d hrs, %d min, %d sec", int_buf, t_h, t_m, t_s);
snprintf(buf, len, "%s days, %d hrs, %d min, %d sec", int_buf, t_h, t_m,
t_s);
}
return buf;