summaryrefslogtreecommitdiff
path: root/src/otvalid/otvcommn.c
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2006-01-27 12:11:22 +0000
committerDavid Turner <david@freetype.org>2006-01-27 12:11:22 +0000
commit6a681fa84a0ba1164726cedfc3623d84f1e3d60a (patch)
tree9a37cda39d61769041249a403808d915c7124f9d /src/otvalid/otvcommn.c
parent97c64185603a94d8251255a4325d2464aad72918 (diff)
downloadfreetype2-6a681fa84a0ba1164726cedfc3623d84f1e3d60a.tar.gz
* src/autofit/afwarp.c: simple #ifdef to prevent compilation when
the warp hinter isn't active (it shouldn't, still experimental) * Jamfile, include/freetype/config/ftmodule.h: removed "gxvalid" and "otvalid" from the list of modules that are linked statically to a given FreeType library. Functionality has been moved to the "ftvalid" CVS module. note also that current Make-based build system still compiles the modules though... * include/freetype/config/ftoption.h: added FT_STRICT_ALIASING, which controls the definitions of the memory management functions to avoid warnings with recent versions of GCC. this macro is only here to be disabled, in case we detect problems with the new scheme. NOTE: disable macro to use the memory debugger. this will be fixed later !!
Diffstat (limited to 'src/otvalid/otvcommn.c')
-rw-r--r--src/otvalid/otvcommn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otvalid/otvcommn.c b/src/otvalid/otvcommn.c
index 1b9d77c42..293960f34 100644
--- a/src/otvalid/otvcommn.c
+++ b/src/otvalid/otvcommn.c
@@ -222,10 +222,10 @@
OTV_LIMIT_CHECK( 2 );
- OTV_TRACE(( " (GlyphCount = %d)\n", GlyphCount ));
-
GlyphCount = FT_NEXT_USHORT( p );
+ OTV_TRACE(( " (GlyphCount = %d)\n", GlyphCount ));
+
OTV_LIMIT_CHECK( GlyphCount * 2 ); /* ClassValueArray */
}
break;