* src/sfnt/pngshim.c (Load_SBit_Png): Fix memory leak (#59322).

The issue is that `rows` is allocated but will not be freed in the
event that the call to `png_read_image` fails and calls `longjmp`.
wl/meson-logging
Ben Wagner 4 years ago committed by Werner Lemberg
parent 6a2b3e4007
commit 007c109b45
  1. 7
      ChangeLog
  2. 1
      src/sfnt/pngshim.c

@ -1,3 +1,10 @@
2020-10-23 Ben Wagner <bungeman@google.com>
* src/sfnt/pngshim.c (Load_SBit_Png): Fix memory leak (#59322).
The issue is that `rows` is allocated but will not be freed in the
event that the call to `png_read_image` fails and calls `longjmp`.
2020-10-20 Werner Lemberg <wl@gnu.org>
* Version 2.10.4 released.

@ -443,6 +443,7 @@
png_read_end( png, info );
DestroyExit:
FT_FREE( rows );
png_destroy_read_struct( &png, &info, NULL );
FT_Stream_Close( &stream );

Loading…
Cancel
Save