diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-09 17:45:53 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-09 17:45:53 +0000 |
commit | 90a88ab9a09d19165cf3668b6a8473024e064fa7 (patch) | |
tree | e11fe4e2ab597cf512b2fd680b50c91cc0293a08 /variable.c | |
parent | 80549d5f17e09173251204f08d288a71bad39256 (diff) | |
download | ruby-90a88ab9a09d19165cf3668b6a8473024e064fa7.tar.gz |
* marshal.c (r_object0): remove unnecessary iv restoration for
USRMARSHAL. [ruby-dev:21582]
* marshal.c (w_object): dump generic instance variables from
a string from '_dump'.
* variable.c (rb_generic_ivar_table): return 0 if obj's FL_EXIVAR
is not set.
* time.c (time_dump): copy instance variables to dumped string, to
be included in the marshaled data.
* bignum.c (rb_big2ulong): add range check to ensure round trip.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/variable.c b/variable.c index 32616fc13f..3cee63b465 100644 --- a/variable.c +++ b/variable.c @@ -780,6 +780,7 @@ rb_generic_ivar_table(obj) { st_table *tbl; + if (!FL_TEST(obj, FL_EXIVAR)) return 0; if (!generic_iv_tbl) return 0; if (!st_lookup(generic_iv_tbl, obj, (st_data_t *)&tbl)) return 0; return tbl; |