* src/pshinter/pshalgo.c (psh_glyph_compute_inflections):

fixed a typo which created an endless loop with some malformed
        font files
david-pic-changes
David Turner 18 years ago
parent bf02d396ca
commit 2628ea9c12
  1. 6
      ChangeLog
  2. 2
      src/pshinter/pshalgo.c

@ -1,3 +1,9 @@
2007-01-10 David Turner <david@freetype.org>
* src/pshinter/pshalgo.c (psh_glyph_compute_inflections):
fixed a typo which created an endless loop with some malformed
font files
2007-01-10 Derek Clegg <dclegg@apple.com>
* src/type1/t1load.c (T1_Get_MM_Var): Always return fixed point

@ -1032,7 +1032,7 @@
orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y );
} while ( orient_prev != 0 );
} while ( orient_prev == 0 );
first = start;
in_x = out_x;

Loading…
Cancel
Save