diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-06-06 18:46:19 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-06-06 18:46:19 +0400 |
commit | dd0e96cca360c5584ec80319ae99fc07c0f2c5f3 (patch) | |
tree | 381e6e405f1b7328018b940fb3048f14dc445e2f /ext/pcre/pcrelib/pcreposix.c | |
parent | e499c3d25930ffc16d330b9b28ab2e70863dbce7 (diff) | |
download | php-git-dd0e96cca360c5584ec80319ae99fc07c0f2c5f3.tar.gz |
Bundle pcre-8.35 with sljit support
Diffstat (limited to 'ext/pcre/pcrelib/pcreposix.c')
-rw-r--r-- | ext/pcre/pcrelib/pcreposix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pcre/pcrelib/pcreposix.c b/ext/pcre/pcrelib/pcreposix.c index 7cf4a4a657..3800239bdb 100644 --- a/ext/pcre/pcrelib/pcreposix.c +++ b/ext/pcre/pcrelib/pcreposix.c @@ -6,7 +6,7 @@ and semantics are as close as possible to those of the Perl 5 language. Written by Philip Hazel - Copyright (c) 1997-2012 University of Cambridge + Copyright (c) 1997-2014 University of Cambridge ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -42,9 +42,7 @@ POSSIBILITY OF SUCH DAMAGE. functions. */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif /* Ensure that the PCREPOSIX_EXP_xxx macros are set appropriately for @@ -170,7 +168,9 @@ static const int eint[] = { REG_BADPAT, /* missing opening brace after \o */ REG_BADPAT, /* parentheses too deeply nested */ REG_BADPAT, /* invalid range in character class */ - REG_BADPAT /* group name must start with a non-digit */ + REG_BADPAT, /* group name must start with a non-digit */ + /* 85 */ + REG_BADPAT /* parentheses too deeply nested (stack check) */ }; /* Table of texts corresponding to POSIX error codes */ |