forked from minhngoc25a/freetype2
* src/cff/cffload (cff_encoding_load): `nleft' must be FT_UInt,
otherwise adding 1 might wrap the result.
This commit is contained in:
parent
8048e39c0b
commit
ad6e67f069
|
@ -1,3 +1,8 @@
|
|||
2003-06-19 Dirck Blaskey <listtarget@danbala.com>
|
||||
|
||||
* src/cff/cffload (cff_encoding_load): `nleft' must be FT_UInt,
|
||||
otherwise adding 1 might wrap the result.
|
||||
|
||||
2003-06-18 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/psnames/psmodule.c (ps_unicode_value): Add support to
|
||||
|
|
|
@ -1778,7 +1778,7 @@
|
|||
|
||||
case 1:
|
||||
{
|
||||
FT_Byte nleft;
|
||||
FT_UInt nleft;
|
||||
FT_UInt i = 1;
|
||||
FT_UInt k;
|
||||
|
||||
|
|
Loading…
Reference in New Issue