[Webkit-unassigned] [Bug 157565] "Invalid compressed data" on website

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 27 02:10:14 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=157565

Carlos Garcia Campos <cgarcia at igalia.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cgarcia at igalia.com

--- Comment #1 from Carlos Garcia Campos <cgarcia at igalia.com> ---
That error message comes from glib, I guess as used by libsoup to uncompress the http stream. It happens in g_zlib_decompressor_convert:

  res = inflate (&decompressor->zstream, Z_NO_FLUSH);

  if (res == Z_DATA_ERROR || res == Z_NEED_DICT)
    {
      g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA,
                           _("Invalid compressed data"));
      return G_CONVERTER_ERROR;
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160527/454e7398/attachment.html>


More information about the webkit-unassigned mailing list