summaryrefslogtreecommitdiff
path: root/marshal.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-20 08:57:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-20 08:57:33 +0000
commitf25fd72a0a9e880b87d037b87d0554aa405eeef7 (patch)
tree861559455bbcb61ca6dec427201f52b5d1d4006e /marshal.c
parenta07dbf0ee912e9f93878a022cf6083d341e95aa9 (diff)
* marshal.c (w_symbol, r_symreal): fixed the order of symbol and
its encoding modifier, in order to make the dump readable from 1.8. [ruby-dev:39515] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/marshal.c b/marshal.c
index bbf24f9f52..f31cf1a21a 100644
--- a/marshal.c
+++ b/marshal.c
@@ -431,13 +431,13 @@ w_symbol(ID id, struct dump_arg *arg)
}
w_byte(TYPE_SYMBOL, arg);
w_bytes(RSTRING_PTR(sym), RSTRING_LEN(sym), arg);
+ st_add_direct(arg->symbols, id, arg->symbols->num_entries);
if (encidx != -1) {
struct dump_call_arg c_arg;
c_arg.limit = 1;
c_arg.arg = arg;
w_encoding(sym, 0, &c_arg);
}
- st_add_direct(arg->symbols, id, arg->symbols->num_entries);
}
}
@@ -1152,7 +1152,9 @@ r_symreal(struct load_arg *arg, int ivar)
volatile VALUE s = r_bytes(arg);
ID id;
int idx = -1;
+ st_index_t n = arg->symbols->num_entries;
+ st_insert(arg->symbols, (st_data_t)n, (st_data_t)0);
if (ivar) {
long num = r_long(arg);
while (num-- > 0) {
@@ -1163,7 +1165,7 @@ r_symreal(struct load_arg *arg, int ivar)
if (idx < 0) idx = rb_usascii_encindex();
rb_enc_associate_index(s, idx);
id = rb_intern_str(s);
- st_insert(arg->symbols, arg->symbols->num_entries, id);
+ st_insert(arg->symbols, (st_data_t)n, (st_data_t)id);
return id;
}