psaux: Fix a few casts to FT_Int32 value.
This commit is contained in:
parent
b76c3f718d
commit
e6d0c1fb9c
|
@ -1,3 +1,11 @@
|
|||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
psaux: Fix a few casts to FT_Int32 value.
|
||||
|
||||
* src/psaux/t1decode.c (t1_decoder_parse_charstrings):
|
||||
Fix a few casts setting `value' from FT_Long to FT_Int32,
|
||||
because `value' is typed as FT_Int32 since 2009-06-22.
|
||||
|
||||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
sfnt: Fix a data type mismatching with its source.
|
||||
|
|
|
@ -594,7 +594,7 @@
|
|||
if ( ip[-1] >= 32 )
|
||||
{
|
||||
if ( ip[-1] < 247 )
|
||||
value = (FT_Long)ip[-1] - 139;
|
||||
value = (FT_Int32)ip[-1] - 139;
|
||||
else
|
||||
{
|
||||
if ( ++ip > limit )
|
||||
|
@ -605,9 +605,9 @@
|
|||
}
|
||||
|
||||
if ( ip[-2] < 251 )
|
||||
value = ( ( (FT_Long)ip[-2] - 247 ) << 8 ) + ip[-1] + 108;
|
||||
value = ( ( (FT_Int32)ip[-2] - 247 ) << 8 ) + ip[-1] + 108;
|
||||
else
|
||||
value = -( ( ( (FT_Long)ip[-2] - 251 ) << 8 ) + ip[-1] + 108 );
|
||||
value = -( ( ( (FT_Int32)ip[-2] - 251 ) << 8 ) + ip[-1] + 108 );
|
||||
}
|
||||
|
||||
if ( !large_int )
|
||||
|
|
Loading…
Reference in New Issue