summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:43 +0900
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:43 +0900
commit48efcb612fc55d0a202e976fa962bf9d951d32a8 (patch)
tree0b6f776b4a3b1ef2e099637a6dbe370d29b62e72
parent8a5c493640773068efd9376483bdf5d9f9d7bc89 (diff)
downloadfreetype2-48efcb612fc55d0a202e976fa962bf9d951d32a8.tar.gz
sfnt: Extend a few local variables to load 32-bit values.
-rw-r--r--ChangeLog7
-rw-r--r--src/sfnt/ttkern.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 483f01370..f1a571212 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+ sfnt: Extend a few local variables to load 32-bit values.
+
+ * src/sfnt/ttkern.c (tt_face_load_kern): Extend `count'
+ and `kern' to load 32-bit values.
+
+2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+
pfr: Extend `num_aux' to take 32-bit value.
* src/pfr/pfrload.c (pfr_phy_font_load): Extend
diff --git a/src/sfnt/ttkern.c b/src/sfnt/ttkern.c
index e0d2ed825..c1540802b 100644
--- a/src/sfnt/ttkern.c
+++ b/src/sfnt/ttkern.c
@@ -126,8 +126,8 @@
*/
if ( num_pairs > 0 )
{
- FT_UInt count;
- FT_UInt old_pair;
+ FT_ULong count;
+ FT_ULong old_pair;
old_pair = FT_NEXT_ULONG( p );