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

fix-sdf-squared-distances
Alexei Podtelezhnikov 3 years ago
parent 6ee8951956
commit ee52b57121
  1. 4
      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 )

Loading…
Cancel
Save