From d7a21c236104248df4259adc1303bf15532a5681 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 28 Aug 2015 10:03:26 +0200 Subject: [PATCH] Fix incorrect HTTP encoding refs #10024 --- lib/remote/httpresponse.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/remote/httpresponse.cpp b/lib/remote/httpresponse.cpp index 649bcb8bd..a9af73bfd 100644 --- a/lib/remote/httpresponse.cpp +++ b/lib/remote/httpresponse.cpp @@ -72,9 +72,6 @@ void HttpResponse::WriteBody(const char *data, size_t count) { ASSERT(m_State == HttpResponseHeaders || m_State == HttpResponseBody); - if (count == 0) - return; - if (m_Request.ProtocolVersion == HttpVersion10) { if (!m_Body) m_Body = new FIFO(); -- 2.40.0