fix: failed to close file stream in onedrive policy

pull/95/head
HFO4 7 years ago
parent 55ea76e35e
commit 78f4a1eae9

@ -592,7 +592,9 @@ class Client
public function sendFileChunk($url,$headers,$stream){ public function sendFileChunk($url,$headers,$stream){
$curl = self::_createCurl(""); $curl = self::_createCurl("");
$close = 0;
if(!is_resource($stream)){ if(!is_resource($stream)){
$close = 1;
$options=[]; $options=[];
$options = array_merge([ $options = array_merge([
'stream_back_end' => $this->_streamBackEnd, 'stream_back_end' => $this->_streamBackEnd,
@ -629,7 +631,7 @@ class Client
curl_setopt_array($curl, $options); curl_setopt_array($curl, $options);
$data = $this->_processResult($curl); $data = $this->_processResult($curl);
if (!is_resource($content)) { if (is_resource($close)) {
fclose($stream); fclose($stream);
} }
return $data; return $data;

Loading…
Cancel
Save