conf-parser: properly initialize variable we free() later (llvm-clang-analyzer)

This commit is contained in:
Lennart Poettering 2009-09-08 23:51:39 +02:00
parent 3c9a09bc45
commit 1516b7c047

View file

@ -113,7 +113,7 @@ static int parse_line(const char *filename, unsigned line, char **section, const
return 0;
if (pa_startswith(b, ".include ")) {
char *path, *fn;
char *path = NULL, *fn;
int r;
fn = strip(b+9);