aboutsummaryrefslogtreecommitdiffstats
path: root/regexec.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-15 06:55:42 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-07-15 06:55:42 +0000
commitb4608406f17097508d4666ceacf8764a746efa3e (patch)
tree8a125980e1d4a5179dc93cc6fbcfcf195d977332 /regexec.c
parent1df8d6dbc37d3da200a8335f053bbf554984081f (diff)
downloadruby-b4608406f17097508d4666ceacf8764a746efa3e.tar.gz
* regexec.c (onig_search): don't skip non-ANYCHARs when
.* fails to match. This causes to fail matching ANYCHAR_STAR with LOOK_BEHIND. This fix is workaround and disable the optimization. [ruby-dev:41851] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/regexec.c b/regexec.c
index 24422b1671..c78d8ea998 100644
--- a/regexec.c
+++ b/regexec.c
@@ -3636,11 +3636,6 @@ onig_search(regex_t* reg, const UChar* str, const UChar* end,
MATCH_AND_RETURN_CHECK(orig_range);
prev = s;
s += enclen(reg->enc, s, end);
-
- while (!ONIGENC_IS_MBC_NEWLINE(reg->enc, prev, end) && s < range) {
- prev = s;
- s += enclen(reg->enc, s, end);
- }
} while (s < range);
goto mismatch;
}