summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/net/ftp.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index 8bd309b21a..f4f7494a04 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -795,6 +795,9 @@ module Net
def parse_mlsx_entry(entry)
facts, pathname = entry.split(" ")
+ unless pathname
+ raise FTPProtoError, entry
+ end
return MLSxEntry.new(
facts.scan(/(.*?)=(.*?);/).each_with_object({}) {
|(factname, value), h|
@@ -816,7 +819,11 @@ module Net
if !resp.start_with?("250")
raise FTPReplyError, resp
end
- entry = resp.lines[1].sub(/\A(250-| *)/, "")
+ line = resp.lines[1]
+ unless line
+ raise FTPProtoError, resp
+ end
+ entry = line.sub(/\A(250-| *)/, "")
return parse_mlsx_entry(entry)
end