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

fixed a typo which created an endless loop with some malformed
        font files
This commit is contained in:
David Turner 2007-01-10 13:15:56 +00:00
parent bf02d396ca
commit 2628ea9c12
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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;