shithub: freetype+ttf2subf

Download patch

ref: bbd8313b5d54758874df53acc142f3217e368e6c
parent: c44a4ba4a27b749d02ba2943e5cb3285338d9b30
author: Werner Lemberg <[email protected]>
date: Wed Apr 16 21:24:36 EDT 2014

Make `FT_Get_SubGlyph_Info' actually work.

* src/base/ftobjs.c (FT_Get_SubGlyph_Info): Return FT_Err_Ok
if there is no error.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-04-17  Werner Lemberg  <[email protected]>
+
+	Make `FT_Get_SubGlyph_Info' actually work.
+
+	* src/base/ftobjs.c (FT_Get_SubGlyph_Info): Return FT_Err_Ok
+	if there is no error.
+
 2014-04-15  Werner Lemberg  <[email protected]>
 
 	[afblue.pl]: Minor improvements.
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -4881,6 +4881,8 @@
       *p_arg1      = subg->arg1;
       *p_arg2      = subg->arg2;
       *p_transform = subg->transform;
+
+      error = FT_Err_Ok;
     }
 
     return error;