mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-27 03:42:40 +00:00
Only fclose($fp) when $mode & NET_SFTP_LOCAL_FILE.
This commit is contained in:
parent
a0a23cbaf1
commit
695d1e9038
@ -1871,7 +1871,9 @@ class Net_SFTP extends Net_SSH2
|
|||||||
$subtemp = $offset + $sent;
|
$subtemp = $offset + $sent;
|
||||||
$packet = pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp), $temp);
|
$packet = pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp), $temp);
|
||||||
if (!$this->_send_sftp_packet(NET_SFTP_WRITE, $packet)) {
|
if (!$this->_send_sftp_packet(NET_SFTP_WRITE, $packet)) {
|
||||||
fclose($fp);
|
if ($mode & NET_SFTP_LOCAL_FILE) {
|
||||||
|
fclose($fp);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$sent+= strlen($temp);
|
$sent+= strlen($temp);
|
||||||
|
Loading…
Reference in New Issue
Block a user