summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-09-08 23:51:39 +0200
committerLennart Poettering <lennart@poettering.net>2009-09-08 23:51:39 +0200
commit1516b7c047464e406ec983f10dcd3b854c4f3331 (patch)
tree67377e1260728535b34b3f9f360fc9406c7fcf77 /src/pulsecore
parent3c9a09bc45608eb333e67bd44c3b69049f4d4ed7 (diff)
conf-parser: properly initialize variable we free() later (llvm-clang-analyzer)
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/conf-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/conf-parser.c b/src/pulsecore/conf-parser.c
index b4ab23cc..dd4a99ee 100644
--- a/src/pulsecore/conf-parser.c
+++ b/src/pulsecore/conf-parser.c
@@ -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);