about summary refs log tree commit diff
path: root/src/afl-fuzz-queue.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-08-11 16:25:35 +0200
committervan Hauser <vh@thc.org>2020-08-11 16:25:35 +0200
commit220dc4a43d197f5ff451627a9923b874805c02aa (patch)
treeaa717a65ec68e7047d789d1990a5b3ae72e2c25f /src/afl-fuzz-queue.c
parent457f627101c08b885e9edfd8b491b5be198b6f14 (diff)
downloadafl++-220dc4a43d197f5ff451627a9923b874805c02aa.tar.gz
review done, pray
Diffstat (limited to 'src/afl-fuzz-queue.c')
-rw-r--r--src/afl-fuzz-queue.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c
index bb44e465..a1fe146b 100644
--- a/src/afl-fuzz-queue.c
+++ b/src/afl-fuzz-queue.c
@@ -420,11 +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->taint_mode && mem) {
-
-    perform_taint_run(afl, q, fname, mem, len);
-
-  }
+  if (afl->taint_mode && mem) { perform_taint_run(afl, q, fname, mem, len); }
 
   /* only redqueen currently uses is_ascii */
   if (afl->shm.cmplog_mode) q->is_ascii = check_if_text(q);