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
This commit is contained in:
nobu 2013-11-22 03:17:16 +00:00
parent a89132ca7f
commit e71bb2c54e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Nov 22 12:17:14 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/openssl/lib/openssl/buffering.rb (OpenSSL::Buffering#initialize):
initialize of a module should pass arguments to super.
Fri Nov 22 12:02:58 2013 Tanaka Akira <akr@fsij.org>
* test/ruby/test_settracefunc.rb: Ignore events from other threads.

View File

@ -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