[Fontconfig] fontconfig: Branch 'master'
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Tue Jan 26 12:03:13 UTC 2021
src/fcopentype.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 23e46d13c5da49c695d3df35b9ebde6131a90dac
Author: Szunti <Szunti at users.noreply.github.com>
Date: Wed Jan 20 16:13:18 2021 +0100
Fix stripping whitespace from end of family in FcPatternAddFullname
diff --git a/src/fcopentype.c b/src/fcopentype.c
index 39c05e9..eff3742 100644
--- a/src/fcopentype.c
+++ b/src/fcopentype.c
@@ -49,7 +49,7 @@ FcPatternAddFullname (FcPattern *pat)
len = strlen ((const char *) family);
for (i = len; i > 0; i--)
{
- if (!isspace (family[i]))
+ if (!isspace (family[i-1]))
break;
}
family[i] = 0;
More information about the Fontconfig
mailing list