зеркало из https://github.com/github/ruby.git
* array.c (rb_hash_rehash): use hash_alloc() instead of rb_hash_new().
[Bug #9187] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
4258235876
Коммит
437b8bc53b
|
@ -1,3 +1,8 @@
|
|||
Tue Dec 3 20:16:38 2013 Masaki Matsushita <glass.saga@gmail.com>
|
||||
|
||||
* array.c (rb_hash_rehash): use hash_alloc() instead of rb_hash_new().
|
||||
[Bug #9187]
|
||||
|
||||
Tue Dec 3 17:11:47 2013 Aman Gupta <ruby@tmm1.net>
|
||||
|
||||
* load.c (features_index_add_single): Move loaded_features_index array values off
|
||||
|
|
2
hash.c
2
hash.c
|
@ -622,7 +622,7 @@ rb_hash_rehash(VALUE hash)
|
|||
rb_hash_modify_check(hash);
|
||||
if (!RHASH(hash)->ntbl)
|
||||
return hash;
|
||||
tmp = rb_hash_new();
|
||||
tmp = hash_alloc(0);
|
||||
tbl = st_init_table_with_size(RHASH(hash)->ntbl->type, RHASH(hash)->ntbl->num_entries);
|
||||
RHASH(tmp)->ntbl = tbl;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче