[truetype] Fix missed test for named instances (#48122).

* src/truetype/ftobjs.c (Mac_Read_sfnt_Resource): Implement.
This commit is contained in:
Werner Lemberg 2016-06-04 06:57:32 +02:00
parent b459882804
commit 5485a34c77
2 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,10 @@
2016-05-17 Nikolaus Waxweiler <madigens@gmail.com>
2016-06-04 Werner Lemberg <wl@gnu.org>
[truetype] Fix missed test for named instances (#48122).
* src/truetype/ftobjs.c (Mac_Read_sfnt_Resource): Implement.
2016-05-31 Nikolaus Waxweiler <madigens@gmail.com>
[truetype] Let SHPIX move points in the twilight zone in v40.

View File

@ -1791,8 +1791,8 @@
FT_Long face_index_in_resource = 0;
if ( face_index == -1 )
face_index = 0;
if ( face_index < 0 )
face_index = -face_index - 1;
if ( face_index >= resource_cnt )
return FT_THROW( Cannot_Open_Resource );