From e6db0123e26543149f429c63ff7e91f2d9d8bbd3 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 27 Oct 2005 08:19:20 +0000 Subject: * string.c (scan_once): wrong condition to use mbclen2(). [ruby-dev:27535] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string.c') diff --git a/string.c b/string.c index ccfda5c8f..c428ea7d7 100644 --- a/string.c +++ b/string.c @@ -4189,7 +4189,7 @@ scan_once(str, pat, start) /* * Always consume at least one character of the input string */ - if (RSTRING(str)->len < END(0)) + if (RSTRING(str)->len > END(0)) *start = END(0)+mbclen2(RSTRING(str)->ptr[END(0)],pat); else *start = END(0)+1; -- cgit