From bd0cef8be7ba6f73251ff7ff741ecbccd3465ea6 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 18 Feb 2008 01:17:44 +0000 Subject: * ext/pty/lib/expect.rb (IO#expect): check if peer is closed. [ruby-Bugs-17940] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/pty/lib/expect.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 45894d847..eecaab057 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Feb 18 10:17:42 2008 Nobuyoshi Nakada + + * ext/pty/lib/expect.rb (IO#expect): check if peer is closed. + [ruby-Bugs-17940] + Mon Feb 18 00:33:03 2008 Tanaka Akira * re.c (rb_reg_regsub): don't repeat repl twice with diff --git a/ext/pty/lib/expect.rb b/ext/pty/lib/expect.rb index aa9ab895d..08191b05b 100644 --- a/ext/pty/lib/expect.rb +++ b/ext/pty/lib/expect.rb @@ -10,7 +10,7 @@ class IO e_pat = pat end while true - if IO.select([self],nil,nil,timeout).nil? then + if !IO.select([self],nil,nil,timeout) or eof? then result = nil break end -- cgit