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

* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and

@n_bytes as well.  [ruby-core:16144]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-04-03 20:58:13 +00:00
parent 4d87d07782
commit 5e50b5099f
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Fri Apr 4 05:57:11 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/net/pop.rb (Net::POP3::do_finish): clear @n_mails and
@n_bytes as well. [ruby-core:16144]
Fri Apr 4 02:17:06 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* range.c (range_step): should not round step into integer if

View file

@ -462,6 +462,8 @@ module Net
def do_finish
@mails = nil
@n_mails = nil
@n_bytes = nil
@command.quit if @command
ensure
@started = false