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

This commit is contained in:
suzuki toshiya 2009-07-03 18:01:42 +09:00
parent 12f2ee55a1
commit 8a5c493640
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
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
`num_aux' to load 32-bit value.
2009-07-03 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;