* lib/net/pop.rb: Exception line was accidentaly removed. [ruby-dev:19989]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2003-04-10 12:15:33 +00:00
parent 59dc82ae1a
commit 95eb316d44
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Apr 10 21:12:19 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/pop.rb: Exception line was accidentaly removed.
[ruby-dev:19989]
Thu Apr 10 18:42:13 2003 Tadayoshi Funaba <tadf@dotrb.org>
* array.c (rb_ary_times): added some checks for request size.

View File

@ -561,6 +561,7 @@ module Net
list = []
@socket.each_list_item do |line|
m = /\A(\d+)[ \t]+(\d+)/.match(line) or
raise BadResponse, "bad response: #{line}"
list[m[1].to_i] = m[2].to_i
end
return list