[gzip] Add support for `gzip' encoded header (#9812).

This commit is contained in:
Moazin Khatti 2019-06-11 21:29:52 +05:00
parent 78c02bc110
commit 6a92b1fadd
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2019-06-11 Moazin Khatti <moazinkhatri@gmail.com>
[gzip] Add support for `gzip' encoded header.
* src/gzip/ftgzip.c (FT_Gzip_Uncompress): Modify the the call to
`inflateInit2' to enable support for `gzip' encoded headers.
2019-06-10 Alexei Podtelezhnikov <apodtele@gmail.com>
[type1,type42] Use `const' for string literals.

View File

@ -746,7 +746,7 @@
stream.zfree = (free_func) ft_gzip_free;
stream.opaque = memory;
err = inflateInit2( &stream, MAX_WBITS );
err = inflateInit2( &stream, MAX_WBITS|32 );
if ( err != Z_OK )
return FT_THROW( Invalid_Argument );