From c80535e50d9ad833d4027dd7bf1a1fc4708bc123 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 24 Dec 2009 06:21:14 +0000 Subject: * regexec.c (match_at): follow enclen's change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26167 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- regexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'regexec.c') diff --git a/regexec.c b/regexec.c index 9fb5ff5dab..b2f9c9fd26 100644 --- a/regexec.c +++ b/regexec.c @@ -1878,7 +1878,7 @@ match_at(regex_t* reg, const UChar* str, const UChar* end, if (scv) goto fail; STACK_PUSH_ALT_WITH_STATE_CHECK(p, s, sprev, mem); - n = enclen(encode, s); + n = enclen(encode, s, end); DATA_ENSURE(n); if (ONIGENC_IS_MBC_NEWLINE(encode, s, end)) goto fail; sprev = s; @@ -1896,7 +1896,7 @@ match_at(regex_t* reg, const UChar* str, const UChar* end, if (scv) goto fail; STACK_PUSH_ALT_WITH_STATE_CHECK(p, s, sprev, mem); - n = enclen(encode, s); + n = enclen(encode, s, end); if (n > 1) { DATA_ENSURE(n); sprev = s; -- cgit v1.2.3