about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-12-12 16:37:23 +0100
committerhexcoder- <heiko@hexco.de>2020-12-12 16:37:23 +0100
commitfd30a4184a149cfd1f45ff6de94487dbdc6dea61 (patch)
tree69b2692a04878cf2749f34516fd5b35d4e960576 /src
parente4a113b953e0b746cffa47e24ad52f18733217bc (diff)
downloadafl++-fd30a4184a149cfd1f45ff6de94487dbdc6dea61.tar.gz
typo
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-run.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c
index b6603f1a..c8ad14c4 100644
--- a/src/afl-fuzz-run.c
+++ b/src/afl-fuzz-run.c
@@ -205,7 +205,7 @@ static void write_with_gap(afl_state_t *afl, u8 *mem, u32 len, u32 skip_at,
 
     if (!post_process_skipped) {
 
-      // If we did post_processing, copy directly from the new_buf bufer
+      // If we did post_processing, copy directly from the new_mem buffer
 
       memcpy(afl->fsrv.shmem_fuzz, new_mem, new_size);
 
@@ -365,7 +365,7 @@ u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem,
     write_to_testcase(afl, use_mem, q->len);
 
     fault = fuzz_run_target(afl, &afl->fsrv, use_tmout);
-
+fprintf(stderr, "from fuzz_run_target() fault=%u\n", fault);
     /* afl->stop_soon is set by the handler for Ctrl+C. When it's pressed,
        we want to bail out quickly. */