Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 124828 | Differences between
and this patch

Collapse All | Expand All

(-)a/ChangeLog (+6 lines)
Lines 1-3 Link Here
1
2006-03-27  David Turner  <david@freetype.org>
2
3
	* src/sfnt/ttkern.c (tt_face_get_kerning): fixed a serious bug
4
        that caused some programs to go into an infinite loop when dealing
5
        with fonts that don't have a properly sorted kerning sub-table
6
1
2006-03-26  Werner Lemberg  <wl@gnu.org>
7
2006-03-26  Werner Lemberg  <wl@gnu.org>
2
8
3
	* src/bdf/bdflib.c (ERRMSG4): New macro.
9
	* src/bdf/bdflib.c (ERRMSG4): New macro.
(-)a/src/sfnt/ttkern.c (-1 / +3 lines)
Lines 246-252 Link Here
246
          }
246
          }
247
          else /* linear search */
247
          else /* linear search */
248
          {
248
          {
249
            for ( count = num_pairs; count > 0; count-- )
249
            FT_UInt  count2;
250
251
            for ( count2 = num_pairs; count2 > 0; count2-- )
250
            {
252
            {
251
              FT_ULong  key = FT_NEXT_ULONG( p );
253
              FT_ULong  key = FT_NEXT_ULONG( p );
252
254

Return to bug 124828