summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:38 +0900
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:38 +0900
commit88aae380f20d75d95d592f2fc71fbb1ea53a80e6 (patch)
treeda3ba209a25c00007e56e6602806bbc2d0fcbd17
parentdd045a511b84d09542d9022ae11796856379bf3b (diff)
downloadfreetype2-88aae380f20d75d95d592f2fc71fbb1ea53a80e6.tar.gz
type1: Fix a data type mismatching with its source.
-rw-r--r--ChangeLog7
-rw-r--r--include/freetype/internal/t1types.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 68b5bdfd0..2821806a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+ type1: Fix a data type mismatching with its source.
+
+ * include/freetype/internal/t1types.h: The type of
+ T1_Face->buildchar is matched with T1_Decorder->top.
+
+2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+
pfr: Fix a data type mismatching with its source.
* src/pfr/pfrtypes.h: The type of PFR_KernItem->offset
diff --git a/include/freetype/internal/t1types.h b/include/freetype/internal/t1types.h
index ff021b0fe..09cb72138 100644
--- a/include/freetype/internal/t1types.h
+++ b/include/freetype/internal/t1types.h
@@ -230,7 +230,7 @@ FT_BEGIN_HEADER
/* undocumented, optional: has the same meaning as len_buildchar */
/* for Type 2 fonts; manipulated by othersubrs 19, 24, and 25 */
FT_UInt len_buildchar;
- FT_Int* buildchar;
+ FT_Long* buildchar;
/* since version 2.1 - interface to PostScript hinter */
const void* pshinter;