diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2014-02-03 08:54:12 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2014-02-03 08:54:12 +0400 |
commit | 74cca641557196512468fafe77d22bfea4f243ea (patch) | |
tree | 4df5f82f7210d72a0ec3dcc2f9b49d50612b6a3a /pcre/pcre_config.c | |
parent | 2acc01b3cfa27074f93016b893cda20fa0a3497f (diff) | |
download | mariadb-git-74cca641557196512468fafe77d22bfea4f243ea.tar.gz |
Upgrading the bundled PCRE to 8.34
Diffstat (limited to 'pcre/pcre_config.c')
-rw-r--r-- | pcre/pcre_config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pcre/pcre_config.c b/pcre/pcre_config.c index 3d5689f62c3..1cbdd9c960c 100644 --- a/pcre/pcre_config.c +++ b/pcre/pcre_config.c @@ -161,6 +161,10 @@ switch (what) *((int *)where) = POSIX_MALLOC_THRESHOLD; break; + case PCRE_CONFIG_PARENS_LIMIT: + *((unsigned long int *)where) = PARENS_NEST_LIMIT; + break; + case PCRE_CONFIG_MATCH_LIMIT: *((unsigned long int *)where) = MATCH_LIMIT; break; |