mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
marshal.c: fix instance variable load odrder
* marshal.c (r_symreal): fix instance variable load odrder, its name must be read before its value. the order of function call arguments is not stable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aa3b506270
commit
2d1e5bcefc
1 changed files with 2 additions and 1 deletions
|
@ -1315,7 +1315,8 @@ r_symreal(struct load_arg *arg, int ivar)
|
|||
if (ivar) {
|
||||
long num = r_long(arg);
|
||||
while (num-- > 0) {
|
||||
idx = sym2encidx(r_symbol(arg), r_object(arg));
|
||||
sym = r_symbol(arg);
|
||||
idx = sym2encidx(sym, r_object(arg));
|
||||
}
|
||||
}
|
||||
if (idx > 0) rb_enc_associate_index(s, idx);
|
||||
|
|
Loading…
Reference in a new issue