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:
parent
a89132ca7f
commit
e71bb2c54e
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user