summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-17 07:25:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-17 07:25:58 +0000
commit4067fd028dfdaeaa177755e5d2ff54511da8a7fc (patch)
tree8960d3348fcf795dfa9eb87dc24e8356a06ed255 /hash.c
parentc9e0df64b52ce2534929ea3a4424564dfb521c26 (diff)
* hash.c (rb_hash_aset): allow recursive key. [ruby-core:24648]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/hash.c b/hash.c
index dda685012c..0b863bd637 100644
--- a/hash.c
+++ b/hash.c
@@ -1096,9 +1096,6 @@ rb_hash_aset(VALUE hash, VALUE key, VALUE val)
{
rb_hash_modify(hash);
hash_update(hash, key);
- if (hash == key) {
- rb_raise(rb_eArgError, "recursive key for hash");
- }
if (RHASH(hash)->ntbl->type == &identhash || rb_obj_class(key) != rb_cString) {
st_insert(RHASH(hash)->ntbl, key, val);
}