about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authoraflpp <aflpp@aflplus.plus>2021-01-31 17:29:37 +0100
committeraflpp <aflpp@aflplus.plus>2021-01-31 17:29:37 +0100
commite5116c6d55185177413104cad1232ca64e04b844 (patch)
treeb374b03fb887ecd12aa98c7e1b05120bad8dc2e4 /include/afl-fuzz.h
parent9d08f0d098c91e69b5fe41674e4c5d05363af604 (diff)
downloadafl++-e5116c6d55185177413104cad1232ca64e04b844.tar.gz
fix -Z, remove q->next
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index e8a21cb5..9b27606c 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -154,6 +154,7 @@ struct queue_entry {
 
   u8 *fname;                            /* File name for the test case      */
   u32 len;                              /* Input length                     */
+  u32 id;                               /* entry number in queue_buf        */
 
   u8 colorized,                         /* Do not run redqueen stage again  */
       cal_failed;                       /* Calibration failed?              */
@@ -191,8 +192,7 @@ struct queue_entry {
   u8 *            cmplog_colorinput;    /* the result buf of colorization   */
   struct tainted *taint;                /* Taint information from CmpLog    */
 
-  struct queue_entry *mother,           /* queue entry this based on        */
-      *next;                            /* Next element, if any             */
+  struct queue_entry *mother;           /* queue entry this based on        */
 
 };