[platform][linux] Add comment for http_client_curl Decompress.

This commit is contained in:
tatiana-yan 2019-10-07 13:40:05 +03:00 committed by mpimenov
parent 7f35cff098
commit a07a3863fe

View file

@ -158,7 +158,13 @@ std::string Decompress(std::string const & compressed, std::string const & encod
if (encoding == "deflate")
{
ZLib::Inflate inflate(ZLib::Inflate::Format::ZLib);
inflate(compressed, back_inserter(decompressed));
// We do not check return value of inflate here.
// It may return false if compressed data is broken or if there is some unconsumed data
// at the end of buffer. The second case considered as ok by some http clients.
// For example, server we use for AsyncGuiThread_GetHotelInfo test adds '\n' to the end of the buffer
// and MacOS client and some versions of curl return no error.
UNUSED_VALUE(inflate(compressed, back_inserter(decompressed)));
}
else
{