forked from organicmaps/organicmaps
[platform][linux] Add comment for http_client_curl Decompress.
This commit is contained in:
parent
7f35cff098
commit
a07a3863fe
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue