diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/decode.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -158,6 +158,7 @@ dillo-fltk2 - Implemented MULTIPLE SELECT in FORMS. - Fixed a memory leak in nav.c !- html.cc cleanup (in progress). New classes, form API, source split. + - Fixed a bug in style caching. Patches: Jeremy Henty +- Added int32_t, EAI_NODATA and iconv tests for FreeBSD. Patch: Thomas-Martin Seck diff --git a/src/decode.c b/src/decode.c index 6846c820..af1d578d 100644 --- a/src/decode.c +++ b/src/decode.c @@ -105,6 +105,8 @@ static Dstr *Decode_gzip(Decode *dc, const char *instr, int inlen) zs->total_out = 0; zs->total_in = 0; + } else if (rc == Z_DATA_ERROR) { + MSG_ERR("gzip decompression error\n"); } } return output; |