diff options
author | van Hauser <vh@thc.org> | 2020-08-11 15:10:18 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-11 15:10:18 +0200 |
commit | 457f627101c08b885e9edfd8b491b5be198b6f14 (patch) | |
tree | f9ae886496cb3ee948781e5bc82d29441a999c75 /src/afl-fuzz-queue.c | |
parent | 4f695b6f4c3ced165703363904e42492fca82112 (diff) | |
download | afl++-457f627101c08b885e9edfd8b491b5be198b6f14.tar.gz |
move taint_mode var
Diffstat (limited to 'src/afl-fuzz-queue.c')
-rw-r--r-- | src/afl-fuzz-queue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c index b56e10f8..bb44e465 100644 --- a/src/afl-fuzz-queue.c +++ b/src/afl-fuzz-queue.c @@ -220,6 +220,7 @@ void perform_taint_run(afl_state_t *afl, struct queue_entry *q, u8 *fname, } else { + FATAL("count not create '%s'", fnw); q->taint_bytes_new = 0; } @@ -419,7 +420,7 @@ void add_to_queue(afl_state_t *afl, u8 *fname, u8 *mem, u32 len, afl->last_path_time = get_cur_time(); /* trigger the tain gathering if this is not a dry run */ - if (afl->fsrv.taint_mode && mem) { + if (afl->taint_mode && mem) { perform_taint_run(afl, q, fname, mem, len); |