From dc56ff80408b16393d645a55788b023f1de27bc9 Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Sun, 13 Aug 2017 16:18:35 +0900 Subject: [PATCH] Keep the same behavior to the return value of FcConfigParseAndLoad reverting the behavior accidentally changed by 12b750 https://bugs.freedesktop.org/show_bug.cgi?id=102141 --- src/fcxml.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/fcxml.c b/src/fcxml.c index 3c18ced..9a061c8 100644 --- a/src/fcxml.c +++ b/src/fcxml.c @@ -3368,7 +3368,10 @@ FcConfigParseAndLoad (FcConfig *config, f = FcConfigFilename (name); if (!f) + { + ret = FcTrue; goto bail0; + } if (sysroot) filename = FcStrBuildFilename (sysroot, f, NULL); else @@ -3399,6 +3402,7 @@ FcConfigParseAndLoad (FcConfig *config, fd = FcOpen ((char *) filename, O_RDONLY); if (fd == -1) { FcStrFree (filename); + ret = FcTrue; goto bail1; }