summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/pcre/pcre_xclass.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/pcre/pcre_xclass.c')
-rw-r--r--src/3rdparty/pcre/pcre_xclass.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/3rdparty/pcre/pcre_xclass.c b/src/3rdparty/pcre/pcre_xclass.c
index dce8580a3d..036b6e734a 100644
--- a/src/3rdparty/pcre/pcre_xclass.c
+++ b/src/3rdparty/pcre/pcre_xclass.c
@@ -81,6 +81,11 @@ additional data. */
if (c < 256)
{
+ if ((*data & XCL_HASPROP) == 0)
+ {
+ if ((*data & XCL_MAP) == 0) return negated;
+ return (((pcre_uint8 *)(data + 1))[c/8] & (1 << (c&7))) != 0;
+ }
if ((*data & XCL_MAP) != 0 &&
(((pcre_uint8 *)(data + 1))[c/8] & (1 << (c&7))) != 0)
return !negated; /* char found */