SCP: do $var === false vs !$var

This commit is contained in:
terrafrost 2022-11-28 08:42:55 -06:00
parent 74ee25bf8a
commit 68c3eef88f

View File

@ -283,6 +283,13 @@ class Net_SCP
$content = '';
while ($size < $info['size']) {
$data = $this->_receive();
// Terminate the loop in case the server repeatedly sends an empty response
if ($data === false) {
user_error('No data received from server', E_USER_NOTICE);
return false;
}
// SCP usually seems to split stuff out into 16k chunks
$size+= strlen($data);