1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/http.rb (Net::HTTP#start): should check whether HTTP session is opened before finishing. (ruby-bugs-ja:PR#463)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2003-05-14 03:20:16 +00:00
parent 445c938f7b
commit ee6a0ecbcb
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed May 14 12:23:46 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb (Net::HTTP#start): should check whether HTTP
session is opened before finishing. (ruby-bugs-ja:PR#463)
Wed May 14 09:12:55 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: reduce warning. (ruby-bugs-ja:PR#462)

View file

@ -721,7 +721,7 @@ module Net
do_start
return yield(self)
ensure
finish
finish if @started
end
end
do_start