]> git.wh0rd.org - fontconfig.git/commitdiff
Uninitialized member of cache structure could lead to non-updated cache
authorKeith Packard <keithp@keithp.com>
Tue, 6 Aug 2002 19:00:43 +0000 (19:00 +0000)
committerKeith Packard <keithp@keithp.com>
Tue, 6 Aug 2002 19:00:43 +0000 (19:00 +0000)
    files

src/fccache.c

index e5e9d14eff729939d0bf9d58ba9b2b247952b39d..f1567da71f656be2a91521693526141502d64bf6 100644 (file)
@@ -623,6 +623,7 @@ FcGlobalCacheCreate (void)
     cache->entries = 0;
     cache->referenced = 0;
     cache->updated = FcFalse;
+    cache->broken = FcFalse;
     return cache;
 }