summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-24 12:16:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-24 12:16:54 +0000
commitcd911b9367b6fba5a237eb21e1e39c0725ad742e (patch)
treefa125974976f9dfbbbe414de8072489b6419148c /lib
parent7142f5b595f46626b7a87d9fe609759972081ff3 (diff)
ostruct.rb: fix OpenStruct.allocate
* lib/ostruct.rb (OpenStruct.allocate): initialize an instance variable directly, without calling `intialize` method which may be overridden in a subclass. [ruby-core:80292] [Bug #13358] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/ostruct.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/ostruct.rb b/lib/ostruct.rb
index 6cc526147c..791471391c 100644
--- a/lib/ostruct.rb
+++ b/lib/ostruct.rb
@@ -74,7 +74,10 @@
#
class OpenStruct
class << self # :nodoc:
- alias allocate new
+ def allocate
+ (x = super).instance_variable_set(:@table, {})
+ x
+ end
end
#