diff options
author | vanhauser-thc <vh@thc.org> | 2021-10-31 12:40:32 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-10-31 12:40:32 +0100 |
commit | 01d266f2b4870fbdfd8daba7498ec422fed84c91 (patch) | |
tree | b780394abd15633ea9fab8b75384f77aa27da62d /include/cmplog.h | |
parent | 639d108512027bda6e7baf4a96f9d4e058e3c1d3 (diff) | |
download | afl++-01d266f2b4870fbdfd8daba7498ec422fed84c91.tar.gz |
wipe overflow data
Diffstat (limited to 'include/cmplog.h')
-rw-r--r-- | include/cmplog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/cmplog.h b/include/cmplog.h index b95a8e43..76082121 100644 --- a/include/cmplog.h +++ b/include/cmplog.h @@ -48,7 +48,8 @@ struct cmp_header { unsigned shape : 5; unsigned type : 2; unsigned attribute : 4; - unsigned reserved : 5; + unsigned overflow : 1; + unsigned reserved : 4; } __attribute__((packed)); |