pfr: Extend `num_aux' to take 32-bit value.

This commit is contained in:
suzuki toshiya 2009-08-01 00:37:56 +09:00
parent 3bda1f9949
commit 3783dac000
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2009-07-31 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
`num_aux' to load 32-bit value.
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
pcf: Truncate FT_ULong `nprops' to fit to int PCF_Face->nprops.

View File

@ -716,7 +716,8 @@
{
FT_Error error;
FT_Memory memory = stream->memory;
FT_UInt flags, num_aux;
FT_UInt flags;
FT_ULong num_aux;
FT_Byte* p;
FT_Byte* limit;