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:
parent
4d87d07782
commit
5e50b5099f
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -462,6 +462,8 @@ module Net
|
|||
|
||||
def do_finish
|
||||
@mails = nil
|
||||
@n_mails = nil
|
||||
@n_bytes = nil
|
||||
@command.quit if @command
|
||||
ensure
|
||||
@started = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue