ref: 15c1f5d36f646fd3f50d6fe3bdbe5cc17c56096b
parent: 3774b997b04a0a63e3f048b92497ebf6069c67ae
author: Wu, Chia-I (吳佳一) <[email protected]>
date: Sat Aug 20 04:17:44 EDT 2005
* src/truetype/ttdriver.c (Load_Glyph): Don't check the validity of ttmetrics here. TrueType fonts with only sbits always have ttmetrics.valid set to false. * src/truetype/ttgload.c (TT_Load_Glyph): Check that ttmetrics is valid before loading outline glyph. * src/cache/ftcimage.c (FTC_INode_New): Fix a memory leak.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2005-08-20 Chia I Wu <[email protected]>
+
+ * src/truetype/ttdriver.c (Load_Glyph): Don't check the validity of
+ ttmetrics here. TrueType fonts with only sbits always have
+ ttmetrics.valid set to false.
+
+ * src/truetype/ttgload.c (TT_Load_Glyph): Check that ttmetrics is
+ valid before loading outline glyph.
+
+ * src/cache/ftcimage.c (FTC_INode_New): Fix a memory leak.
+
2005-08-20 Werner Lemberg <[email protected]>
* src/sfnt/ttload.c (tt_face_load_metrics_header): Ignore missing
--- a/src/cache/ftcimage.c
+++ b/src/cache/ftcimage.c
@@ -78,6 +78,11 @@
/* we will now load the glyph image */
error = clazz->family_load_glyph( family, gindex, cache,
&inode->glyph );
+ if ( error )
+ {
+ FTC_INode_Free( inode, cache );
+ inode = NULL;
+ }
}
*pinode = inode;
--- a/src/truetype/ttdriver.c
+++ b/src/truetype/ttdriver.c
@@ -283,7 +283,7 @@
if ( !slot )
return TT_Err_Invalid_Slot_Handle;
- if ( !size || !size->ttmetrics.valid )
+ if ( !size )
return TT_Err_Invalid_Size_Handle;
if ( load_flags & ( FT_LOAD_NO_RECURSE | FT_LOAD_NO_SCALE ) )
--- a/src/truetype/ttgload.c
+++ b/src/truetype/ttgload.c
@@ -2029,6 +2029,9 @@
#endif /* TT_CONFIG_OPTION_EMBEDDED_BITMAPS */
+ if ( !size->ttmetrics.valid )
+ return TT_Err_Invalid_Size_Handle;
+
if ( load_flags & FT_LOAD_SBITS_ONLY )
return TT_Err_Invalid_Argument;