From b2b5a5db0925f94220897813a552aa7d4ec2fd11 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 5 Feb 2014 11:56:35 +0000 Subject: pack.c: hide associated objects * marshal.c (to_be_skipped_id): ignore anonymous attributes. * pack.c (Init_pack): use anonymous ID so that associated objects do not appear in the packed result. * parse.y (rb_make_internal_id): return an anonymous ID for internal use. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'marshal.c') diff --git a/marshal.c b/marshal.c index 239c29aa9e..4a1b55e873 100644 --- a/marshal.c +++ b/marshal.c @@ -513,7 +513,7 @@ w_uclass(VALUE obj, VALUE super, struct dump_arg *arg) } } -#define to_be_skipped_id(id) (id == rb_id_encoding() || id == rb_intern("E")) +#define to_be_skipped_id(id) (id == rb_id_encoding() || id == rb_intern("E") || !rb_id2str(id)) static int w_obj_each(st_data_t key, st_data_t val, st_data_t a) -- cgit v1.2.3