From e71bb2c54e2b98794e423b54c9a8e54695886a44 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 22 Nov 2013 03:17:16 +0000 Subject: openssl/buffering.rb: call super * ext/openssl/lib/openssl/buffering.rb (OpenSSL::Buffering#initialize): initialize of a module should pass arguments to super. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/lib/openssl/buffering.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/openssl/lib') diff --git a/ext/openssl/lib/openssl/buffering.rb b/ext/openssl/lib/openssl/buffering.rb index 0ccbf0f9bf..85cf8af31c 100644 --- a/ext/openssl/lib/openssl/buffering.rb +++ b/ext/openssl/lib/openssl/buffering.rb @@ -40,7 +40,8 @@ module OpenSSL::Buffering ## # Creates an instance of OpenSSL's buffering IO module. - def initialize + def initialize(*) + super @eof = false @rbuffer = "" @sync = @io.sync -- cgit v1.2.3