mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
conf-parser: properly initialize variable we free() later (llvm-clang-analyzer)
This commit is contained in:
parent
3c9a09bc45
commit
1516b7c047
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ static int parse_line(const char *filename, unsigned line, char **section, const
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (pa_startswith(b, ".include ")) {
|
if (pa_startswith(b, ".include ")) {
|
||||||
char *path, *fn;
|
char *path = NULL, *fn;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
fn = strip(b+9);
|
fn = strip(b+9);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue