shithub: freetype+ttf2subf

Download patch

ref: cf31edf5ee16c1babfb76c677daa8664a36cef36
parent: ec7bc863fbe57c56def98c9e436f840f6ed27942
author: suzuki toshiya <[email protected]>
date: Fri Jul 31 20:32:19 EDT 2009

psaux: Fix a data type mismatching with its source.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2009-07-31  suzuki toshiya <[email protected]>
 
+	psaux: Fix a data type mismatching with its source.
+
+	* include/freetype/internal/psaux.h: The type of
+	T1_DecorderRec.buildchar is matched with
+	T1_DecorderRec.top.
+
+2009-07-31  suzuki toshiya <[email protected]>
+
 	truetype: Extend TrueType GX packed deltas to FT_Offset.
 
 	* src/truetype/ttgxvar.c (ft_var_readpackeddeltas):
--- a/include/freetype/internal/psaux.h
+++ b/include/freetype/internal/psaux.h
@@ -689,7 +689,7 @@
     T1_Decoder_Callback  parse_callback;
     T1_Decoder_FuncsRec  funcs;
 
-    FT_Int*              buildchar;
+    FT_Long*             buildchar;
     FT_UInt              len_buildchar;
 
     FT_Bool              seac;