From 260231d3f6bba0e0fde81e78a5e145dafe5e8824 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Sun, 4 Sep 2005 22:03:24 +0000 Subject: * ext/openssl/openssl/lib/openssl/buffering.rb (Buffering#do_write): should clear data from the buffer which already been output. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/lib/openssl/buffering.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/openssl') diff --git a/ext/openssl/lib/openssl/buffering.rb b/ext/openssl/lib/openssl/buffering.rb index bd11afe043..761a017487 100644 --- a/ext/openssl/lib/openssl/buffering.rb +++ b/ext/openssl/lib/openssl/buffering.rb @@ -182,7 +182,7 @@ module Buffering remain -= nwrote nwritten += nwrote end - @wbuffer = "" + @wbuffer[0,nwritten] = "" end end -- cgit v1.2.3