Fix double free in error case.

This commit is contained in:
Patrick Lam 2006-02-03 23:47:37 +00:00
parent 80ba0571f3
commit 1af0f5741a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-02-03 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheUnlink):
Fix double free in error case.
2006-01-31 Behdad Esfabod <behdad@cs.utoronto.edu>
Stephan Kulow <coolo@suse.de>
reviewed by: plam

View File

@ -743,7 +743,6 @@ FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
}
} while (strcmp (name_buf, cache_file) != 0);
FcStrFree ((FcChar8 *)cache_file);
close (fd);
if (stat ((char *) cache_hashed, &cache_stat) == 0 &&
@ -753,6 +752,7 @@ FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config)
goto bail;
}
FcStrFree ((FcChar8 *)cache_file);
FcStrFree ((FcChar8 *)cache_hashed);
return FcTrue;