Compare commits

...

1 Commits

Author SHA1 Message Date
Alexei Podtelezhnikov
dec3118592 * src/truetype/ttgload.c (TT_Load_Simple_Glyph): Triage memory leak.
This leak has been introduced in the previous commit and immediately
detected:
  https://chromium-review.googlesource.com/c/chromium/src/+/4313202
2023-03-06 22:41:17 -05:00

View File

@ -453,6 +453,8 @@
/* and thus allocate the bytecode array size by ourselves */
if ( n_ins )
{
if ( exec->glyphSize )
FT_FREE( exec->glyphIns );
if ( FT_QNEW_ARRAY( exec->glyphIns, n_ins ) )
return error;