Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > eac9e210919493c0959e9881147f64aa > files > 16

freetype-2.4.4-8.fc15.src.rpm

--- freetype-2.4.4/src/bdf/bdflib.c	2012-03-28 15:24:32.000000000 +0200
+++ freetype-2.4.4/src/bdf/bdflib.c	2012-03-28 15:25:18.000000000 +0200
@@ -1587,6 +1587,11 @@
 
       p->glyph_enc = _bdf_atol( p->list.field[1], 0, 10 );
 
+      /* Normalize negative encoding values.  The specification only */
+      /* allows -1, but we can be more generous here.                */
+      if ( p->glyph_enc < -1 )
+        p->glyph_enc = -1;
+
       /* Check that the encoding is in the range [0,65536] because        */
       /* otherwise p->have (a bitmap with static size) overflows.         */
       if ( (size_t)p->glyph_enc >= sizeof ( p->have ) * 8 )