Hoist FcFileIsDir check out of FcFileScanConfig loop.

reviewed by: plam
This commit is contained in:
Patrick Lam 2006-02-06 21:52:15 +00:00
parent a0aa54f6ee
commit 98592bbb1d
2 changed files with 10 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2006-02-06 Takashi Iwai <tiwai@suse.de>
reviewed by: plam
* src/fcdir.c (FcFileScanConfig):
Hoist FcFileIsDir check out of FcFileScanConfig loop.
2006-02-06 Takashi Iwai <tiwai@suse.de>
reviewed by: plam

View File

@ -47,14 +47,17 @@ FcFileScanConfig (FcFontSet *set,
int id;
FcPattern *font;
FcBool ret = FcTrue;
FcBool isDir;
int count = 0;
if (config && !FcConfigAcceptFilename (config, file))
return FcTrue;
if (FcFileIsDir (file))
return FcStrSetAdd (dirs, file);
if (force)
cache = 0;
id = 0;
do
{
@ -70,12 +73,6 @@ FcFileScanConfig (FcFontSet *set,
font = FcFreeTypeQuery (file, id, blanks, &count);
if (FcDebug () & FC_DBG_SCAN)
printf ("done\n");
isDir = FcFalse;
if (!font && FcFileIsDir (file))
{
isDir = FcTrue;
ret = FcStrSetAdd (dirs, file);
}
/*
* Add the font
*/