1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-04 02:28:06 +01:00

Merge branch 'master' into php5

* master:
  Only fclose($fp) when $mode & NET_SFTP_LOCAL_FILE.
This commit is contained in:
Andreas Fischer 2014-07-24 17:04:25 +02:00
commit 8862b3c97a

View File

@ -1871,7 +1871,9 @@ class Net_SFTP extends Net_SSH2
$subtemp = $offset + $sent;
$packet = pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp), $temp);
if (!$this->_send_sftp_packet(NET_SFTP_WRITE, $packet)) {
fclose($fp);
if ($mode & NET_SFTP_LOCAL_FILE) {
fclose($fp);
}
return false;
}
$sent+= strlen($temp);