mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-11 04:27:44 -05:00
add missing return value changes for snd_config_get_string() calls
Signed-off-by: Jaroslav Kysela <jkysela@redhat.com>
This commit is contained in:
parent
796b48c0d2
commit
a9465869a7
4 changed files with 15 additions and 4 deletions
|
|
@ -1089,7 +1089,9 @@ static int parse_sequence(snd_use_case_mgr_t *uc_mgr,
|
|||
snd_error(UCM, "string type is expected for sequence command");
|
||||
return -EINVAL;
|
||||
}
|
||||
snd_config_get_string(n, &cmd);
|
||||
err = snd_config_get_string(n, &cmd);
|
||||
if (err < 0)
|
||||
return err;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue