[HttpClient] fix closing debug stream prematurely

This commit is contained in:
Nicolas Grekas 2019-06-12 15:33:27 +02:00
parent c45c6e50e1
commit 21857a1edb

View File

@ -168,8 +168,8 @@ final class CurlResponse implements ResponseInterface
rewind($this->debugBuffer);
$info['debug'] = stream_get_contents($this->debugBuffer);
curl_setopt($this->handle, CURLOPT_VERBOSE, false);
fclose($this->debugBuffer);
$this->debugBuffer = null;
rewind($this->debugBuffer);
ftruncate($this->debugBuffer, 0);
$this->finalInfo = $info;
}
}