summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/string.c b/string.c
index f3c3097637..8abce208bf 100644
--- a/string.c
+++ b/string.c
@@ -1307,9 +1307,10 @@ rb_str_aset(str, indx, val)
case T_STRING:
beg = rb_str_index(str, indx, 0);
- if (beg != -1) {
- rb_str_update(str, beg, RSTRING(indx)->len, val);
+ if (beg < 0) {
+ rb_raise(rb_eIndexError, "string not matched");
}
+ rb_str_update(str, beg, RSTRING(indx)->len, val);
return val;
default: