From: Keith Packard Date: Tue, 6 Aug 2002 19:00:43 +0000 (+0000) Subject: Uninitialized member of cache structure could lead to non-updated cache X-Git-Tag: fcpackage_rc2~6 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bb356b68ab0981dd9ec21ed8176dc80ad0580805;p=fontconfig.git Uninitialized member of cache structure could lead to non-updated cache files --- diff --git a/src/fccache.c b/src/fccache.c index e5e9d14..f1567da 100644 --- a/src/fccache.c +++ b/src/fccache.c @@ -623,6 +623,7 @@ FcGlobalCacheCreate (void) cache->entries = 0; cache->referenced = 0; cache->updated = FcFalse; + cache->broken = FcFalse; return cache; }