diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-11 00:45:32 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-11 00:45:32 +0000 |
| commit | 787db042ef9330de71dccf99b0d13411a56de723 (patch) | |
| tree | 96a331221c76edf2e44fee6b407540397d93bb12 | |
| parent | 3629264d825c52c44eb89bf1cb0aad246bb09941 (diff) | |
| download | ruby-787db042ef9330de71dccf99b0d13411a56de723.tar.gz ruby-787db042ef9330de71dccf99b0d13411a56de723.tar.xz ruby-787db042ef9330de71dccf99b0d13411a56de723.zip | |
* string.c (rb_str_aset): index double decode problem.
[ruby-core:09695]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11374 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | string.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Dec 11 09:36:29 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * string.c (rb_str_aset): index double decode problem. + [ruby-core:09695] + Sat Dec 9 21:39:24 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> * eval.c (ruby_cleanup): keep the exception till after END blocks. @@ -1811,8 +1811,8 @@ rb_str_aset(VALUE str, VALUE indx, VALUE val) switch (TYPE(indx)) { case T_FIXNUM: - num_index: idx = FIX2LONG(indx); + num_index: if (RSTRING_LEN(str) <= idx) { out_of_range: rb_raise(rb_eIndexError, "index %ld out of string", idx); |
