ref: d48575ee3a2b04f75a92f4f4b79f977490fb6ac4
parent: 98add9e68c172e2c689a420ea3c53bd5c2772b87
author: David Turner <[email protected]>
date: Wed Sep 18 19:18:36 EDT 2002
* src/base/ftobjs.c (FT_Library_Version): bugfix
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-18 David Turner <[email protected]>
+
+ * src/base/ftobjs.c (FT_Library_Version): bugfix
+
+ * FreeType 2.1.3rc2 (release candidate 2) is released !!
+
2002-09-17 David Turner <[email protected]>
* include/freetype/freetype.h, include/freetype/ftimage.h,
@@ -74,7 +80,7 @@
* include/freetype/ftimage.h: Removed incorrect "zft_" definitions
and updated constants documentation comments.
- * src/cff/cffparse.c (cff_parser_run): Fixed the CFF table loader.
+ * src/cff/cffparse.c (cff_parser_run): Fixed the CFF table loader.
It didn't accept empty arrays, and this prevented the loading of
certain fonts.
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -2420,13 +2420,13 @@
patch = library->version_patch;
}
- if ( *amajor )
+ if ( amajor )
*amajor = major;
- if ( *aminor )
+ if ( aminor )
*aminor = minor;
- if ( *apatch )
+ if ( apatch )
*apatch = patch;
}