diff --git a/src/Symfony/Component/HttpClient/Response/CurlResponse.php b/src/Symfony/Component/HttpClient/Response/CurlResponse.php index 1c5114e92f..0c615bab04 100644 --- a/src/Symfony/Component/HttpClient/Response/CurlResponse.php +++ b/src/Symfony/Component/HttpClient/Response/CurlResponse.php @@ -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; } }