summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
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 4849907062..675af12088 100644
--- a/string.c
+++ b/string.c
@@ -1410,6 +1410,7 @@ rb_str_upto(beg, end, excl)
current = rb_funcall(current, succ, 0, 0);
StringValue(current);
if (excl && rb_str_equal(current, end)) break;
+ StringValue(current);
if (RSTRING(current)->len > RSTRING(end)->len)
break;
}