Commit d48575ee3a2b04f75a92f4f4b79f977490fb6ac4

David Turner 2002-09-18T23:18:36

* src/base/ftobjs.c (FT_Library_Version): bugfix

diff --git a/ChangeLog b/ChangeLog
index 5785a8a..e906773 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-18  David Turner  <david@freetype.org>
+
+        * src/base/ftobjs.c (FT_Library_Version): bugfix
+
+        * FreeType 2.1.3rc2 (release candidate 2) is released !!
+
 2002-09-17  David Turner  <david@freetype.org>
 
 	* 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.
 
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index dce6847..545c403 100644
--- 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;
   }