ref: ee52b57121c2dcb74e0c30d98cdb3bae5b3e7cb9
parent: 6ee89519561aa33c63abcb24ae63920742f81316
author: Alexei Podtelezhnikov <apodtele@gmail.com>
date: Thu Jan 13 04:45:48 EST 2022
* src/lzw/ftlzw.c (FT_Stream_OpenLZW): Avoid unnecessary zeroing.
--- a/src/lzw/ftlzw.c
+++ b/src/lzw/ftlzw.c
@@ -344,7 +344,7 @@
{
FT_Error error;
FT_Memory memory;
- FT_LZWFile zip = NULL;
+ FT_LZWFile zip;
if ( !stream || !source )
@@ -369,7 +369,7 @@
FT_ZERO( stream );
stream->memory = memory;
- if ( !FT_NEW( zip ) )
+ if ( !FT_QNEW( zip ) )
{
error = ft_lzw_file_init( zip, stream, source );
if ( error )