diff options
author | vanhauser-thc <vh@thc.org> | 2021-12-02 10:41:24 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-12-02 10:41:24 +0100 |
commit | ca7144161f900a0f5c8b76922a0102fbcc291f2c (patch) | |
tree | b613e31142b9598c0f385c3e40ff25366e292035 /src/afl-fuzz-stats.c | |
parent | 80d5afa3738c06a376f8a256129537a9cbdd2229 (diff) | |
download | afl++-ca7144161f900a0f5c8b76922a0102fbcc291f2c.tar.gz |
fixes
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 426580d2..152bebe9 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -543,9 +543,11 @@ void show_stats(afl_state_t *afl) { FATAL( "Incorrect fuzzing setup detected. Your target seems to have loaded " - "incorrectly instrumented shared libraries. If you use LTO mode " + "incorrectly instrumented shared libraries (%u of %u/%u). If you use " + "LTO mode " "please see instrumentation/README.lto.md. To ignore this problem " - "and continue fuzzing just set 'AFL_IGNORE_PROBLEMS=1'.\n"); + "and continue fuzzing just set 'AFL_IGNORE_PROBLEMS=1'.\n", + t_bytes, afl->fsrv.real_map_size, afl->fsrv.map_size); } |