Only fclose($fp) when $mode & NET_SFTP_LOCAL_FILE.

This commit is contained in:
Andreas Fischer 2014-07-24 11:04:48 +02:00
parent a0a23cbaf1
commit 695d1e9038

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);