src/fcxml.c: avoid double free() of filename

It's also freed after bail1, so no need to do it here.
This commit is contained in:
Alexander Kanavin 2017-10-11 17:40:09 +03:00 committed by Akira TAGOH
parent f4a2a1e577
commit 90271ae079
1 changed files with 0 additions and 1 deletions

View File

@ -3344,7 +3344,6 @@ FcConfigParseAndLoad (FcConfig *config,
fd = FcOpen ((char *) filename, O_RDONLY);
if (fd == -1) {
FcStrFree (filename);
goto bail1;
}