diff options
author | van Hauser <vh@thc.org> | 2019-08-01 11:49:01 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-08-01 11:49:01 +0200 |
commit | 89769c836f6ce8f33fd7837e0df24fc591f18353 (patch) | |
tree | b12ebfd3f74beaebf36374b2c43f59d9aec0138d /afl-showmap.c | |
parent | 7c8470b1dcc8430356fbf97cd33baf3843d52dca (diff) | |
download | afl++-89769c836f6ce8f33fd7837e0df24fc591f18353.tar.gz |
showmap fix
Diffstat (limited to 'afl-showmap.c')
-rw-r--r-- | afl-showmap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/afl-showmap.c b/afl-showmap.c index baf8352e..4bbc42ee 100644 --- a/afl-showmap.c +++ b/afl-showmap.c @@ -114,14 +114,15 @@ static void classify_counts(u8* mem, const u8* map) { mem++; } - } else { + } + /* else { while (i--) { *mem = map[*mem]; mem++; } - } + }*/ // why this? its nowhere documented. and gives a false impression } @@ -415,6 +416,7 @@ static void usage(u8* argv0) { " -c - allow core dumps\n\n" "This tool displays raw tuple data captured by AFL instrumentation.\n" + "(Note that *real* tuple data is shown, not interpreted data as in stock afl)\n" "For additional help, consult %s/README.\n\n" cRST, argv0, MEM_LIMIT, doc_path); |