From 6470d1c80e1b670e1e16c04f2ad6c3ac38fc64b7 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Fri, 17 Jan 2020 06:38:54 -0600 Subject: [PATCH] SSH2: @stream_select -> stream_select --- phpseclib/Net/SSH2.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/phpseclib/Net/SSH2.php b/phpseclib/Net/SSH2.php index c1ecae18..601ccac4 100644 --- a/phpseclib/Net/SSH2.php +++ b/phpseclib/Net/SSH2.php @@ -3586,7 +3586,7 @@ class SSH2 $write = $except = null; if (!$this->curTimeout) { - @stream_select($read, $write, $except, null); + stream_select($read, $write, $except, null); } else { if ($this->curTimeout < 0) { $this->is_timeout = true; @@ -3599,8 +3599,7 @@ class SSH2 $start = microtime(true); $sec = floor($this->curTimeout); $usec = 1000000 * ($this->curTimeout - $sec); - // on windows this returns a "Warning: Invalid CRT parameters detected" error - if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) { + if (!stream_select($read, $write, $except, $sec, $usec)) { $this->is_timeout = true; if ($client_channel == self::CHANNEL_EXEC && !$this->request_pty) { $this->close_channel($client_channel);