shithub: freetype+ttf2subf

Download patch

ref: fd03cf88167ac15a38c73cc5c51d55dfba0b5c82
parent: 50b013871c53f7624b5351dd4820a137303fe14b
author: Werner Lemberg <[email protected]>
date: Sat Jan 4 14:28:36 EST 2020

[base] Fix `FREETYPE_PROPERTIES=type1:hinting-engine=adobe`.

* src/base/ftpsprop.c (ps_property_set) [hinting-engine]: Avoid an
incorrect return value that caused a warning.  The function did the
right thing, though.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2020-01-04  Werner Lemberg  <[email protected]>
+
+	[base] Fix `FREETYPE_PROPERTIES=type1:hinting-engine=adobe`.
+
+	* src/base/ftpsprop.c (ps_property_set) [hinting-engine]: Avoid an
+	incorrect return value that caused a warning.  The function did the
+	right thing, though.
+
 2020-01-03  Werner Lemberg  <[email protected]>
 
 	[woff2] Fix memory leaks and a runtime warning.
--- a/src/base/ftpsprop.c
+++ b/src/base/ftpsprop.c
@@ -165,9 +165,9 @@
           driver->hinting_engine = *hinting_engine;
         else
           error = FT_ERR( Unimplemented_Feature );
-
-        return error;
       }
+
+      return error;
     }
 
     else if ( !ft_strcmp( property_name, "no-stem-darkening" ) )