summaryrefslogtreecommitdiff
path: root/src/fcxml.c
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2017-08-13 16:18:35 +0900
committerAkira TAGOH <akira@tagoh.org>2017-08-13 16:18:46 +0900
commitdc56ff80408b16393d645a55788b023f1de27bc9 (patch)
tree5f47741c199574030561954be2347a9a7d830319 /src/fcxml.c
parent41bc5eab84fffbb427d929a5dc712348b635122c (diff)
downloadfontconfig-dc56ff80408b16393d645a55788b023f1de27bc9.tar.gz
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
Diffstat (limited to 'src/fcxml.c')
-rw-r--r--src/fcxml.c4
1 files changed, 4 insertions, 0 deletions
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;
}