diff options
Diffstat (limited to 'testing/libfuzzer')
-rw-r--r-- | testing/libfuzzer/xfa_codec_fuzzer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/libfuzzer/xfa_codec_fuzzer.h b/testing/libfuzzer/xfa_codec_fuzzer.h index 0ab7834f1e..b1d888f380 100644 --- a/testing/libfuzzer/xfa_codec_fuzzer.h +++ b/testing/libfuzzer/xfa_codec_fuzzer.h @@ -17,8 +17,9 @@ #include "testing/fx_string_testhelpers.h" #include "third_party/base/ptr_util.h" -// Support up to 512 MB. This prevents trivial OOM when MSAN is on. -const int kXFACodecFuzzerPixelLimit = 512000000; +// Support up to 64 MB. This prevents trivial OOM when MSAN is on and +// time outs. +const int kXFACodecFuzzerPixelLimit = 64000000; class XFACodecFuzzer { public: |