* src/cff/cffparse.c (do_fixed): Fix typo.

Spotted by chris <chris@gcjd.org>.
arv-testing
Werner Lemberg 8 years ago
parent dde8f5abbe
commit 2e7bb5e825
  1. 6
      ChangeLog
  2. 2
      src/cff/cffparse.c

@ -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…
Cancel
Save