aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-05 10:42:43 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-05 10:42:43 +0000
commit87275504ab0690e243401db6985f6253ccc17b65 (patch)
treea4bf25c1ad58146102acdb8bb3e17a548239ef57 /lib
parent1c1a61a436623cda35085246aed2f5c81802b23f (diff)
downloadruby-87275504ab0690e243401db6985f6253ccc17b65.tar.gz
* lib/net/http.rb (HTTPResponse#to_ary): should return an object which does not respond to #to_ary. It causes infinite loop in puts. [ruby-core:02578]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/http.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 6e0e7e03ab..b0334a2757 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1607,7 +1607,11 @@ module Net # :nodoc:
#
def to_ary
warn "net/http.rb: warning: Net::HTTP v1.1 style assignment found at #{caller(1)[0]}; use `response = http.get(...)' instead." if $VERBOSE
- [self, body()]
+ res = self.dup
+ class << res
+ undef to_ary
+ end
+ [res, res.body]
end
#