There is a missing closing bracket in src/fcstr.c at line 875: https://cgit.freedesktop.org/fontconfig/tree/src/fcstr.c#n875 Patch: diff --git a/src/fcstr.c b/src/fcstr.c index bfddd68..4247c85 100644 --- a/src/fcstr.c +++ b/src/fcstr.c @@ -872,7 +872,7 @@ FcStrIsAbsoluteFilename (const FcChar8 *s) { #ifdef _WIN32 if (*s == '\\' || - (isalpha (*s) && s[1] == ':' && (s[2] == '/' || s[2] == '\\')) + (isalpha (*s) && s[1] == ':' && (s[2] == '/' || s[2] == '\\'))) return FcTrue; #endif return *s == '/'; -- 2.18.0
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/96.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.