* src/lzw/ftlzw.c (FT_Stream_OpenLZW): Avoid unnecessary zeroing.

This commit is contained in:
Alexei Podtelezhnikov 2022-01-13 09:45:48 -05:00
parent 6ee8951956
commit ee52b57121
1 changed files with 2 additions and 2 deletions

View File

@ -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 )