From fd03cf88167ac15a38c73cc5c51d55dfba0b5c82 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Sat, 4 Jan 2020 19:28:36 +0100 Subject: [PATCH] [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. --- ChangeLog | 8 ++++++++ src/base/ftpsprop.c | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3b525ca49..b9d858280 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2020-01-04 Werner Lemberg + + [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 [woff2] Fix memory leaks and a runtime warning. diff --git a/src/base/ftpsprop.c b/src/base/ftpsprop.c index 52b9d453a..3a31a18b1 100644 --- 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" ) )