mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-06 13:29:59 -05:00
ucm: fix the reload call (snd_use_case_mgr_reload)
Handle the local configuration and macros trees properly. Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
4119e33d28
commit
0418fd32c7
3 changed files with 16 additions and 12 deletions
|
|
@ -734,6 +734,14 @@ void uc_mgr_free_verb(snd_use_case_mgr_t *uc_mgr)
|
|||
struct list_head *pos, *npos;
|
||||
struct use_case_verb *verb;
|
||||
|
||||
if (uc_mgr->local_config) {
|
||||
snd_config_delete(uc_mgr->local_config);
|
||||
uc_mgr->local_config = NULL;
|
||||
}
|
||||
if (uc_mgr->macros) {
|
||||
snd_config_delete(uc_mgr->macros);
|
||||
uc_mgr->macros = NULL;
|
||||
}
|
||||
list_for_each_safe(pos, npos, &uc_mgr->verb_list) {
|
||||
verb = list_entry(pos, struct use_case_verb, list);
|
||||
free(verb->name);
|
||||
|
|
@ -768,10 +776,6 @@ void uc_mgr_free_verb(snd_use_case_mgr_t *uc_mgr)
|
|||
|
||||
void uc_mgr_free(snd_use_case_mgr_t *uc_mgr)
|
||||
{
|
||||
if (uc_mgr->local_config)
|
||||
snd_config_delete(uc_mgr->local_config);
|
||||
if (uc_mgr->macros)
|
||||
snd_config_delete(uc_mgr->macros);
|
||||
uc_mgr_free_verb(uc_mgr);
|
||||
uc_mgr_free_ctl_list(uc_mgr);
|
||||
free(uc_mgr->card_name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue