mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 55063: [Backport #12391]
* thread.c (recursive_list_access): a object id may be a Bignum. so, the list must be a objhash, instead of a identhash. this fixes many test errors on mswin64 CI. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@55383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fe0fb03316
commit
e206da0ab8
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
Sun Jun 12 02:27:07 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* thread.c (recursive_list_access): a object id may be a Bignum. so,
|
||||
the list must be a objhash, instead of a identhash.
|
||||
this fixes many test errors on mswin64 CI.
|
||||
|
||||
Sun Jun 12 01:59:33 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (new_if_gen): set newline flag to NODE_IF to trace all
|
||||
|
|
|
|||
2
thread.c
2
thread.c
|
|
@ -4306,7 +4306,7 @@ recursive_list_access(VALUE sym)
|
|||
list = rb_hash_aref(hash, sym);
|
||||
}
|
||||
if (NIL_P(list) || !RB_TYPE_P(list, T_HASH)) {
|
||||
list = rb_ident_hash_new();
|
||||
list = rb_hash_new();
|
||||
rb_hash_aset(hash, sym, list);
|
||||
}
|
||||
return list;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.3.2"
|
||||
#define RUBY_RELEASE_DATE "2016-06-12"
|
||||
#define RUBY_PATCHLEVEL 121
|
||||
#define RUBY_PATCHLEVEL 122
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2016
|
||||
#define RUBY_RELEASE_MONTH 6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue