diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-26 12:37:11 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-26 12:37:11 +0000 |
commit | a20a14727f4c15fad7a07b8bd7c39074895aa845 (patch) | |
tree | 267bf412e9975868fe4922063ae7b463c940af12 /marshal.c | |
parent | ea54c59a8e7daf3f0a05eead6415f39c52e3a0fc (diff) | |
download | ruby-a20a14727f4c15fad7a07b8bd7c39074895aa845.tar.gz |
* hash.c, include/ruby/ruby.h: support WB protected hash.
* constify RHash::ifnone and make new macro RHASH_SET_IFNONE().
* insert write barrier for st_update().
* include/ruby/intern.h: declare rb_hash_set_ifnone(hash, ifnone).
* marshal.c (r_object0): use RHASH_SET_IFNONE().
* ext/openssl/ossl_x509name.c (Init_ossl_x509name): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r-- | marshal.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1725,7 +1725,7 @@ r_object0(struct load_arg *arg, int *ivp, VALUE extmod) } arg->readable += 2; if (type == TYPE_HASH_DEF) { - RHASH_IFNONE(v) = r_object(arg); + RHASH_SET_IFNONE(v, r_object(arg)); } v = r_leave(v, arg); } |