Bug 157565

Summary: "Invalid compressed data" on website
Product: WebKit Reporter: Bastien Nocera <bugzilla>
Component: WebKitGTKAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WORKSFORME    
Severity: Normal CC: bugs-noreply, cgarcia, svillar
Priority: P2    
Version: Other   
Hardware: Unspecified   
OS: Unspecified   

Bastien Nocera
Reported 2016-05-11 04:20:13 PDT
webkitgtk4-2.12.2-2.fc24.x86_64 MiniBrowser and epiphany fail loading: http://www.doperoms.com/roms/Sega_Sg-1000.html The page starts to load and content appears and you're suddenly redirected to this "Invalid compressed data" page. Seems to work correctly in Firefox.
Attachments
Carlos Garcia Campos
Comment 1 2016-05-27 02:10:14 PDT
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; }
Sergio Villar Senin
Comment 2 2016-05-27 02:27:02 PDT
(In reply to comment #1) > 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; > } JFTR works fine with ToT.
Carlos Garcia Campos
Comment 3 2016-05-27 02:32:43 PDT
Works for me as well with both trunk and 2.12 branch so I suspect something changed in the website
Note You need to log in before you can comment on or make changes to this bug.