forked from minhngoc25a/freetype2
[truetype] Adjust number of glyphs for malformed `loca' tables.
* src/truetype/ttpload.c (tt_face_load_loca): Implement it.
This commit is contained in:
parent
52aad9dfc6
commit
8651f37ad5
|
@ -1,3 +1,9 @@
|
|||
2015-09-30 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Adjust number of glyphs for malformed `loca' tables.
|
||||
|
||||
* src/truetype/ttpload.c (tt_face_load_loca): Implement it.
|
||||
|
||||
2015-09-29 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[pshinter] Avoid harmless overflow (#45984).
|
||||
|
|
|
@ -152,6 +152,14 @@
|
|||
FT_TRACE2(( "adjusting num_locations to %d\n",
|
||||
face->num_locations ));
|
||||
}
|
||||
else
|
||||
{
|
||||
face->root.num_glyphs = face->num_locations
|
||||
? (FT_Long)face->num_locations - 1 : 0;
|
||||
|
||||
FT_TRACE2(( "adjusting num_glyphs to %d\n",
|
||||
face->root.num_glyphs ));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue