[sfnt] Fix Savannah bug #43672.
* src/sfnt/ttkern.c (tt_face_load_kern): Use correct value for minimum table length test.
This commit is contained in:
parent
73be9f9ab6
commit
f70d9342e6
@ -1,3 +1,10 @@
|
||||
2014-11-24 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[sfnt] Fix Savannah bug #43672.
|
||||
|
||||
* src/sfnt/ttkern.c (tt_face_load_kern): Use correct value for
|
||||
minimum table length test.
|
||||
|
||||
2014-11-24 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[type1, type42] Another fix for Savannah bug #43655.
|
||||
|
@ -99,7 +99,7 @@
|
||||
length = FT_NEXT_USHORT( p );
|
||||
coverage = FT_NEXT_USHORT( p );
|
||||
|
||||
if ( length <= 6 )
|
||||
if ( length <= 6 + 8 )
|
||||
break;
|
||||
|
||||
p_next += length;
|
||||
|
Loading…
Reference in New Issue
Block a user