summaryrefslogtreecommitdiff
path: root/sapi/fuzzer/fuzzer-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/fuzzer/fuzzer-parser.c')
-rw-r--r--sapi/fuzzer/fuzzer-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/fuzzer/fuzzer-parser.c b/sapi/fuzzer/fuzzer-parser.c
index 155bd991cc..19f685f967 100644
--- a/sapi/fuzzer/fuzzer-parser.c
+++ b/sapi/fuzzer/fuzzer-parser.c
@@ -27,7 +27,7 @@
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
char *s;
- if (Size > 64 * 1024) {
+ if (Size > 32 * 1024) {
/* Large inputs have a large impact on fuzzer performance,
* but are unlikely to be necessary to reach new codepaths. */
return 0;