Fix Savannah bug #27811.

* src/truetype/ttxgvar.c (ft_var_readpackeddeltas): Fix
signed/unsigned mismatch.
This commit is contained in:
bram tassyns 2009-10-26 22:26:31 +01:00 committed by Werner Lemberg
parent 38449dceaf
commit 06ba45978d
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2009-10-26 Bram Tassyns <bramt@enfocus.be>
Fix Savannah bug #27811.
* src/truetype/ttxgvar.c (ft_var_readpackeddeltas): Fix
signed/unsigned mismatch.
2009-10-19 Ning Dong <flintning@163.com>
Fix handling of `get' and `put' CFF instructions.

View File

@ -214,7 +214,7 @@
FT_Offset delta_cnt )
{
FT_Short *deltas;
FT_Int runcnt;
FT_UInt runcnt;
FT_Offset i;
FT_Offset j;
FT_Memory memory = stream->memory;