diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-07 05:33:02 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-07 05:33:02 +0100 |
commit | 209c5ba4657b641bf261da7ac9ce7d3f809109c2 (patch) | |
tree | 9aa88f72ad623b0b7bc3829a5fb94d19d2cde2ac /src/afl-fuzz-bitmap.c | |
parent | 01327ad301afbcc71b3ac597bc6e093839c5f469 (diff) | |
download | afl++-209c5ba4657b641bf261da7ac9ce7d3f809109c2.tar.gz |
larger map, stats reload fix, code format
Diffstat (limited to 'src/afl-fuzz-bitmap.c')
-rw-r--r-- | src/afl-fuzz-bitmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index 0c4a114e..4ed59364 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -325,7 +325,8 @@ u8 *describe_op(afl_state_t *afl, u8 new_bits, size_t max_description_len) { } - sprintf(ret + strlen(ret), ",time:%llu", get_cur_time() - afl->start_time); + sprintf(ret + strlen(ret), ",time:%llu", + get_cur_time() + afl->prev_run_time - afl->start_time); if (afl->current_custom_fuzz && afl->current_custom_fuzz->afl_custom_describe) { |