From: Jaroslav Kysela Date: Mon, 4 Nov 2019 17:38:59 +0000 (+0100) Subject: alsaucm: call snd_config_update_free_global() to make valgrind more happy X-Git-Tag: v1.2.1~4 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=94401f7afea39b71bc0a7ceb607f0b3db70d291f;p=alsa-utils.git alsaucm: call snd_config_update_free_global() to make valgrind more happy Signed-off-by: Jaroslav Kysela --- diff --git a/alsaucm/usecase.c b/alsaucm/usecase.c index fbbe73a..532bac0 100644 --- a/alsaucm/usecase.c +++ b/alsaucm/usecase.c @@ -361,6 +361,7 @@ static void my_exit(struct context *context, int exitcode) if (context->batch) free(context->batch); free(context); + snd_config_update_free_global(); exit(exitcode); }