diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-05 20:08:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-05 20:08:33 +0000 |
commit | f1ff09fbf62a1db3991efef5c1d0e53feffdfb6b (patch) | |
tree | 13a07a4ac60fa737cf76cbe9460f4de4d3352aff /array.c | |
parent | 0031e09170af64ff0d6ad34cc7cfefbeb6df74f2 (diff) | |
download | ruby-f1ff09fbf62a1db3991efef5c1d0e53feffdfb6b.tar.gz |
* array.c (rb_ary_sort_bang): reset to real class.
* file.c (rb_find_file_ext, rb_find_file): ditto.
* io.c (io_reopen): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1562,7 +1562,7 @@ rb_ary_sort_bang(VALUE ary) RARRAY(tmp)->ptr = 0; RARRAY(tmp)->len = 0; RARRAY(tmp)->aux.capa = 0; - RBASIC(tmp)->klass = RBASIC(ary)->klass; + RBASIC(tmp)->klass = rb_cArray; } return ary; } |