* src/gzip/ftgzip.c (ft_gzip_alloc): Zero out memory again.

This commit is contained in:
Alexei Podtelezhnikov 2021-04-30 09:35:21 -04:00
parent f631542dae
commit 4e1c6a12e5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2021-04-30 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/gzip/ftgzip.c (ft_gzip_alloc): Zero out memory again.
2021-04-27 Alexei Podtelezhnikov <apodtele@gmail.com>
[lzw] Preserve decompression stack when relocating to heap.

View File

@ -130,7 +130,8 @@
FT_Pointer p = NULL;
(void)FT_QALLOC( p, sz );
/* allocate and zero out */
(void)FT_ALLOC( p, sz );
return p;
}