* src/cff/cffparse.c (do_fixed): Fix typo.
Spotted by chris <chris@gcjd.org>.
This commit is contained in:
parent
dde8f5abbe
commit
2e7bb5e825
|
@ -1,3 +1,9 @@
|
|||
2017-06-27 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/cff/cffparse.c (do_fixed): Fix typo.
|
||||
|
||||
Spotted by chris <chris@gcjd.org>.
|
||||
|
||||
2017-06-27 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Integer overflows.
|
||||
|
|
|
@ -504,7 +504,7 @@
|
|||
{
|
||||
if ( FT_ABS( val ) > power_ten_limits[scaling] )
|
||||
{
|
||||
val = val > 0 ? 0x7FFFFFFFL : -0x7FFFFFFFFL;
|
||||
val = val > 0 ? 0x7FFFFFFFL : -0x7FFFFFFFL;
|
||||
goto Overflow;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue