mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-16 14:25:21 -05:00
fix segfault if pacman.conf can't be read
Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
ae7139adcf
commit
36474af463
@ -750,7 +750,9 @@ static int _parseconfig(const char *file, struct section_t *section,
|
|||||||
}
|
}
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
if (fp) {
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
}
|
||||||
pm_printf(ALPM_LOG_DEBUG, "config: finished parsing %s\n", file);
|
pm_printf(ALPM_LOG_DEBUG, "config: finished parsing %s\n", file);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user