alsactl init - fix memory leaks (valgrind helped)

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2008-08-19 13:28:22 +02:00
parent 2e7bb3caf5
commit cdf5a9b824
2 changed files with 6 additions and 1 deletions

View file

@ -174,5 +174,6 @@ int main(int argc, char *argv[])
res = -ENODEV;
}
snd_config_update_free_global();
return res < 0 ? res : 0;
}

View file

@ -124,13 +124,16 @@ static void free_space(struct space *space)
space->ctl_card_info = NULL;
}
if (space->ctl_handle) {
free(space->ctl_handle);
snd_hctl_close(space->ctl_handle);
space->ctl_handle = NULL;
}
if (space->rootdir)
free(space->rootdir);
if (space->program_result)
free(space->program_result);
if (space->go_to)
free(space->go_to);
free(space);
}
struct pair *value_find(struct space *space, const char *key)
@ -1680,6 +1683,7 @@ static int parse(struct space *space, const char *filename)
linenum += linenum_adj;
}
free(line);
space->filename = NULL;
space->linenum = -1;
file_unmap(buf, bufsize);