* src/gzip/ftgzip.c (ft_gzip_file_done): fixed memory leak, the ZLib
stream was not properly finalized
This commit is contained in:
parent
641afc9c88
commit
a3c378024b
|
@ -1,3 +1,8 @@
|
||||||
|
2003-02-28 Pixel <pixel@mandrakesoft.com>
|
||||||
|
|
||||||
|
* src/gzip/ftgzip.c (ft_gzip_file_done): fixed memory leak, the ZLib
|
||||||
|
stream was not properly finalized
|
||||||
|
|
||||||
2003-02-25 Anthony Fok <anthony@thizlinux.com>
|
2003-02-25 Anthony Fok <anthony@thizlinux.com>
|
||||||
|
|
||||||
* src/cache/ftccmap.c: the cmap cache now supports UCS-4 charmaps
|
* src/cache/ftccmap.c: the cmap cache now supports UCS-4 charmaps
|
||||||
|
|
|
@ -276,6 +276,8 @@
|
||||||
{
|
{
|
||||||
z_stream* zstream = &zip->zstream;
|
z_stream* zstream = &zip->zstream;
|
||||||
|
|
||||||
|
inflateEnd( zstream );
|
||||||
|
|
||||||
/* clear the rest */
|
/* clear the rest */
|
||||||
zstream->zalloc = NULL;
|
zstream->zalloc = NULL;
|
||||||
zstream->zfree = NULL;
|
zstream->zfree = NULL;
|
||||||
|
|
Loading…
Reference in New Issue