summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/pcre_compile.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-05-09 22:15:54 +0200
committerAnatol Belski <ab@php.net>2014-05-09 22:15:54 +0200
commitc62f32c3cc6e85a525dd959bd821c754b9c20e63 (patch)
treeddb7054a02ac06f44eb92ecee41f15bc2f20605c /ext/pcre/pcrelib/pcre_compile.c
parentcf2b9955d4c26393f6d16b71b5c2c69d8d2b7f52 (diff)
downloadphp-git-c62f32c3cc6e85a525dd959bd821c754b9c20e63.tar.gz
Bug #67238 Ungreedy and min/max quantifier bug in PCRE 8.34 upstream
upstream patch applied
Diffstat (limited to 'ext/pcre/pcrelib/pcre_compile.c')
-rw-r--r--ext/pcre/pcrelib/pcre_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcre_compile.c b/ext/pcre/pcrelib/pcre_compile.c
index c170c47a00..853fb24793 100644
--- a/ext/pcre/pcrelib/pcre_compile.c
+++ b/ext/pcre/pcrelib/pcre_compile.c
@@ -3623,7 +3623,7 @@ for (;;)
break;
case OP_MINUPTO:
- *code += OP_MINUPTO - OP_UPTO;
+ *code += OP_POSUPTO - OP_MINUPTO;
break;
}
}