[sfnt] Avoid nullptr dereference in reading malformed 'COLR' v1 table.

Fixes https://bugs.chromium.org/p/chromium/issues/detail?id=1408044.

* src/sfnt/ttcolr.c (tt_face_load_colr): When the 'COLR' v1 table header is
too small, don't deallocate delta set index map structures.
apodtele-master-patch-38950
Dominik Röttsches 2 years ago committed by Werner Lemberg
parent f80be4e959
commit a297feab0e
  1. 2
      src/sfnt/ttcolr.c

@ -190,7 +190,7 @@
#endif
if ( table_size < COLRV0_HEADER_SIZE )
goto InvalidTable;
goto NoColr;
if ( FT_FRAME_EXTRACT( table_size, table ) )
goto NoColr;

Loading…
Cancel
Save