From 2a2beb47c4b7b61be75ca92c96976ef9f33c64f0 Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Sat, 1 Aug 2009 00:37:57 +0900 Subject: [PATCH] sfnt: Extend a few local variables to load 32-bit values. --- ChangeLog | 7 +++++++ src/sfnt/ttkern.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3d051c01d..449a2bb76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-07-31 suzuki toshiya + + 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-31 suzuki toshiya pfr: Extend `num_aux' to take 32-bit value. 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 );