diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-02 10:40:41 +0100 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-02 10:40:41 +0100 |
| commit | 991a0250b572098796d15ab7608af359cb7ef556 (patch) | |
| tree | 96e5c4c99bb691b68b74074c44a2ca8d07821b2e /sapi/fuzzer/fuzzer-sapi.c | |
| parent | 21eddde3fd06e67726b637354b28149720e4a445 (diff) | |
| download | php-git-991a0250b572098796d15ab7608af359cb7ef556.tar.gz | |
Reduce oniguruma retry limit in fuzzer
For some patterns matching may take quite long even at retry limit
100000 and it seems that this is not easy to fix on the oniguruma
side.
Reduce the retry limit by another factor of 10 in hope of reducing
timeouts.
Diffstat (limited to 'sapi/fuzzer/fuzzer-sapi.c')
| -rw-r--r-- | sapi/fuzzer/fuzzer-sapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/fuzzer/fuzzer-sapi.c b/sapi/fuzzer/fuzzer-sapi.c index fb552974e8..5e50e3d1aa 100644 --- a/sapi/fuzzer/fuzzer-sapi.c +++ b/sapi/fuzzer/fuzzer-sapi.c @@ -34,9 +34,9 @@ const char HARDCODED_INI[] = "implicit_flush=1\n" "output_buffering=0\n" "error_reporting=0\n" - /* Reduce oniguruma limits by a factor of 10 to speed up fuzzing */ + /* Reduce oniguruma limits to speed up fuzzing */ "mbstring.regex_stack_limit=10000\n" - "mbstring.regex_retry_limit=100000"; + "mbstring.regex_retry_limit=10000"; static int startup(sapi_module_struct *sapi_module) { |
