summaryrefslogtreecommitdiffhomepage
path: root/src/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/string.c b/src/string.c
index 2cfdc337e..2d9d176d4 100644
--- a/src/string.c
+++ b/src/string.c
@@ -1710,11 +1710,13 @@ mrb_str_reverse_bang(mrb_state *mrb, mrb_value str)
str_reverse(p, p + clen - 1);
p += clen;
}
+ goto bytes;
}
#endif
- mrb_str_modify(mrb, s);
if (RSTR_LEN(s) > 1) {
+ mrb_str_modify(mrb, s);
+ bytes:
p = RSTR_PTR(s);
e = p + RSTR_LEN(s) - 1;
str_reverse(p, e);