diff options
author | van Hauser <vh@thc.org> | 2020-06-12 16:33:20 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-12 16:33:20 +0200 |
commit | 40aca0b6b398d8de0ecc17cf075e0eb79ec15d81 (patch) | |
tree | 658ee93327c9bcb29fad4e038c6b1c960e28d303 /src/afl-tmin.c | |
parent | a632c00b0d023b8a40d09839fbb2662da1cb5d37 (diff) | |
download | afl++-40aca0b6b398d8de0ecc17cf075e0eb79ec15d81.tar.gz |
fix for checksums
Diffstat (limited to 'src/afl-tmin.c')
-rw-r--r-- | src/afl-tmin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index 13fee660..609f61d1 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -67,12 +67,13 @@ static u8 *in_file, /* Minimizer input test case */ static u8 *in_data; /* Input data for trimming */ static u32 in_len, /* Input data length */ - orig_cksum, /* Original checksum */ missed_hangs, /* Misses due to hangs */ missed_crashes, /* Misses due to crashes */ missed_paths, /* Misses due to exec path diffs */ map_size = MAP_SIZE; +static u64 orig_cksum; /* Original checksum */ + static u8 crash_mode, /* Crash-centric mode? */ hang_mode, /* Minimize as long as it hangs */ exit_crash, /* Treat non-zero exit as crash? */ |