summaryrefslogtreecommitdiff
path: root/src/fccache.c
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2019-07-23 10:53:16 +0000
committerAkira TAGOH <akira@tagoh.org>2019-07-23 10:53:16 +0000
commit957625bafae3e4f86dba2543969f9e702fe76e93 (patch)
tree3a0ce0147279754a3516301fd2c5fdfcee99bb50 /src/fccache.c
parentdce6ed92f2f0596294c66c0d1fb7e78e00d59482 (diff)
downloadfontconfig-957625bafae3e4f86dba2543969f9e702fe76e93.tar.gz
Fix the fail on fc-cache
Fallback code to UUID-based cache name was broken. Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/169
Diffstat (limited to 'src/fccache.c')
-rw-r--r--src/fccache.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/fccache.c b/src/fccache.c
index 7e42761..0976201 100644
--- a/src/fccache.c
+++ b/src/fccache.c
@@ -371,8 +371,6 @@ FcDirCacheProcess (FcConfig *config, const FcChar8 *dir,
FcChar8 *cache_hashed;
#ifndef _WIN32
FcBool retried = FcFalse;
-
- retry:
#endif
if (sysroot)
cache_hashed = FcStrBuildFilename (sysroot, cache_dir, cache_base, NULL);
@@ -380,6 +378,9 @@ FcDirCacheProcess (FcConfig *config, const FcChar8 *dir,
cache_hashed = FcStrBuildFilename (cache_dir, cache_base, NULL);
if (!cache_hashed)
break;
+#ifndef _WIN32
+ retry:
+#endif
fd = FcDirCacheOpenFile (cache_hashed, &file_stat);
if (fd >= 0) {
ret = (*callback) (config, fd, &file_stat, &dir_stat, closure);
@@ -396,11 +397,19 @@ FcDirCacheProcess (FcConfig *config, const FcChar8 *dir,
#ifndef _WIN32
else if (!retried)
{
+ FcChar8 uuid_cache_base[CACHEBASE_LEN];
+
retried = FcTrue;
- FcDirCacheBasenameUUID (config, dir, cache_base);
- if (cache_base[0] != 0)
+ FcDirCacheBasenameUUID (config, dir, uuid_cache_base);
+ if (uuid_cache_base[0] != 0)
{
FcStrFree (cache_hashed);
+ if (sysroot)
+ cache_hashed = FcStrBuildFilename (sysroot, cache_dir, uuid_cache_base, NULL);
+ else
+ cache_hashed = FcStrBuildFilename (cache_dir, uuid_cache_base, NULL);
+ if (!cache_hashed)
+ break;
goto retry;
}
}