Commit bbe732c015ff84633dbd25f6f496d421dfb71764
Committed by
GitHub
Merge pull request #1254 from m-holger/fuzz
Adjust qpdf_fuzzer warnings limit
Showing
1 changed file
with
1 additions
and
1 deletions
fuzz/qpdf_fuzzer.cc
| ... | ... | @@ -59,7 +59,7 @@ FuzzHelper::getQpdf() |
| 59 | 59 | auto is = |
| 60 | 60 | std::shared_ptr<InputSource>(new BufferInputSource("fuzz input", &this->input_buffer)); |
| 61 | 61 | auto qpdf = QPDF::create(); |
| 62 | - qpdf->setMaxWarnings(500); | |
| 62 | + qpdf->setMaxWarnings(200); | |
| 63 | 63 | qpdf->processInputSource(is); |
| 64 | 64 | return qpdf; |
| 65 | 65 | } | ... | ... |