diff options
author | hexcoder- <heiko@hexco.de> | 2020-12-12 16:40:13 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-12-12 16:40:13 +0100 |
commit | befb1a2f39b28dbc360d5a6937705c48768ec053 (patch) | |
tree | fa940b8d5be4792efd8c87f2192e40d87522a93a /src | |
parent | fd30a4184a149cfd1f45ff6de94487dbdc6dea61 (diff) | |
download | afl++-befb1a2f39b28dbc360d5a6937705c48768ec053.tar.gz |
remove stray debugging fprintf
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index c8ad14c4..a97ceb89 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -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. */ |