summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-01 07:11:40 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-01 07:11:40 +0000
commitb3c42a2e4193efc0ee3eb565a3510cf7efe7f75a (patch)
treecd071e74d43dfea5ec4c6fb4dd0d21607ecd2bd9 /string.c
parentf2d2dfe9ca4a50bc88a5c3ff8242433f82ea7e75 (diff)
merge revision(s) 26103:
* string.c (rb_str_inspect): wrong result of UTF-8 inspect because of the mistake of calculation. reported by eban via IRC. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@27145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 69430c6cfc..c6b2301874 100644
--- a/string.c
+++ b/string.c
@@ -2642,7 +2642,7 @@ rb_str_inspect(str)
while (p < pend) {
char c = *p++;
int len;
- if (ismbchar(c) && p + (len = mbclen(c)) <= pend) {
+ if (ismbchar(c) && p - 1 + (len = mbclen(c)) <= pend) {
rb_str_buf_cat(result, p - 1, len);
p += len - 1;
}