summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-12 11:51:02 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-12 11:51:02 +0000
commitfa07823abbdf85f8cec7a1a08996d8c88c9631e0 (patch)
tree43cfa474585323596a4f187f4a7e6bc063f3ed1d /string.c
parent78e4b57ce1212ca16d9685ce48bf9abd66f8dfef (diff)
merge revision(s) 63252: [Backport #14707]
string.c: fix scanned substring with `\K` * string.c (scan_once): fix the matched substring with `\K`, the beginning of that string may differ from the matched position. [ruby-core:86663] [Bug #14707] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@64320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/string.c b/string.c
index 15f8f718f5..80749c22a0 100644
--- a/string.c
+++ b/string.c
@@ -8950,6 +8950,7 @@ scan_once(VALUE str, VALUE pat, long *start, int set_backref_str)
else {
match = rb_backref_get();
regs = RMATCH_REGS(match);
+ pos = BEG(0);
end = END(0);
}
if (pos == end) {