summaryrefslogtreecommitdiff
path: root/honggfuzz.h
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2020-03-17 01:09:54 +0100
committerRobert Swiecki <robert@swiecki.net>2020-03-17 01:09:54 +0100
commit0414a9934a507d3334f3101a14630ec15acda566 (patch)
tree4571eac2ffd25c18916cbc3b9ff1db9c0c8f8f58 /honggfuzz.h
parent9d5e143cbf0986833b37a185d627556d29aba04d (diff)
downloadhonggfuzz-0414a9934a507d3334f3101a14630ec15acda566.tar.gz
Lower the technical maximum input file size to 1MB (from 128MB)
Diffstat (limited to 'honggfuzz.h')
-rw-r--r--honggfuzz.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/honggfuzz.h b/honggfuzz.h
index 08d9bcd5..525cdf1f 100644
--- a/honggfuzz.h
+++ b/honggfuzz.h
@@ -70,8 +70,8 @@
/* Maximum number of PC guards (=trace-pc-guard) we support */
#define _HF_PC_GUARD_MAX (1024ULL * 1024ULL * 64ULL)
-/* Maximum size of the input file in bytes (128 MiB) */
-#define _HF_INPUT_MAX_SIZE (1024ULL * 1024ULL * 128ULL)
+/* Maximum size of the input file in bytes (1 MiB) */
+#define _HF_INPUT_MAX_SIZE (1024ULL * 1024ULL)
/* Default maximum size of produced inputs */
#define _HF_INPUT_DEFAULT_SIZE (1024ULL * 8)