summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/pcre/patches/pcre-r1513.patch
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/pcre/patches/pcre-r1513.patch')
-rw-r--r--src/3rdparty/pcre/patches/pcre-r1513.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/3rdparty/pcre/patches/pcre-r1513.patch b/src/3rdparty/pcre/patches/pcre-r1513.patch
deleted file mode 100644
index d84aa0cc61..0000000000
--- a/src/3rdparty/pcre/patches/pcre-r1513.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: pcre_exec.c
-===================================================================
---- pcre_exec.c (revisione 1512)
-+++ pcre_exec.c (revisione 1513)
-@@ -1404,8 +1404,11 @@
- condition = TRUE;
-
- /* Advance ecode past the assertion to the start of the first branch,
-- but adjust it so that the general choosing code below works. */
--
-+ but adjust it so that the general choosing code below works. If the
-+ assertion has a quantifier that allows zero repeats we must skip over
-+ the BRAZERO. This is a lunatic thing to do, but somebody did! */
-+
-+ if (*ecode == OP_BRAZERO) ecode++;
- ecode += GET(ecode, 1);
- while (*ecode == OP_ALT) ecode += GET(ecode, 1);
- ecode += 1 + LINK_SIZE - PRIV(OP_lengths)[condcode];