summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:36 +0900
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:36 +0900
commit018a2e5f3f52e3ea2a1d17e7055c58bda0fd344c (patch)
tree8338794936b0c0bd24c0bc256b7bbf758fe56e2c
parentc156c52cd973c969b706b7421e4b19bdff3a9374 (diff)
downloadfreetype2-018a2e5f3f52e3ea2a1d17e7055c58bda0fd344c.tar.gz
psaux: Fix a data type mismatching with its source.
-rw-r--r--ChangeLog8
-rw-r--r--include/freetype/internal/psaux.h2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 37090a853..d87d132f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+ 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-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+
truetype: Extend TrueType GX packed deltas to FT_Offset.
* src/truetype/ttgxvar.c (ft_var_readpackeddeltas):
diff --git a/include/freetype/internal/psaux.h b/include/freetype/internal/psaux.h
index c53e36426..a96e0dfa8 100644
--- a/include/freetype/internal/psaux.h
+++ b/include/freetype/internal/psaux.h
@@ -689,7 +689,7 @@ FT_BEGIN_HEADER
T1_Decoder_Callback parse_callback;
T1_Decoder_FuncsRec funcs;
- FT_Int* buildchar;
+ FT_Long* buildchar;
FT_UInt len_buildchar;
FT_Bool seac;