From 3f34ecc536f6b569774e2c41702cf70020d962b6 Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 11 Oct 2010 11:23:35 +0000 Subject: * lib/net/http.rb (HTTP.get): specify ASCII-8BIT as the result encoding of Zlib::GzipReader. http://hibari.2ch.net/test/read.cgi/tech/1281473294/271 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/net/http.rb b/lib/net/http.rb index 0ae1ba8c8f..a4e2cee8e5 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -883,7 +883,7 @@ module Net #:nodoc: the_body = r.read_body dest, &block case r["content-encoding"] when "gzip" - r.body= Zlib::GzipReader.new(StringIO.new(the_body)).read + r.body= Zlib::GzipReader.new(StringIO.new(the_body), encoding: "ASCII-8BIT").read r.delete("content-encoding") when "deflate" r.body= Zlib::Inflate.inflate(the_body); -- cgit v1.2.3