diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-03-08 02:26:48 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-03-08 02:41:12 -0500 |
commit | 2e2c177ca84aff092c3c96714b0f6a12900f3946 (patch) | |
tree | 8f0f0e6d1f51b3541fcf71f207b1496dd411fddc | |
parent | 338e17d3f58e9868a12af7deb1edcfb40bd588b2 (diff) |
ALSA: vmaster: Propagate slave error
In slave_update() of vmaster code ignores the error from the slave
get() callback and copies the values. It's not only about the missing
error code but also that this may potentially lead to a leak of
uninitialized variables when the slave get() don't clear them.
This patch fixes slave_update() not to copy the potentially
uninitialized values when an error is returned from the slave get()
callback, and to propagate the error value properly.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/core/vmaster.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/core/vmaster.c b/sound/core/vmaster.c index 8632301489fa..b67de2bb06a2 100644 --- a/sound/core/vmaster.c +++ b/sound/core/vmaster.c | |||
@@ -68,10 +68,13 @@ static int slave_update(struct link_slave *slave) | |||
68 | return -ENOMEM; | 68 | return -ENOMEM; |
69 | uctl->id = slave->slave.id; | 69 | uctl->id = slave->slave.id; |
70 | err = slave->slave.get(&slave->slave, uctl); | 70 | err = slave->slave.get(&slave->slave, uctl); |
71 | if (err < 0) | ||
72 | goto error; | ||
71 | for (ch = 0; ch < slave->info.count; ch++) | 73 | for (ch = 0; ch < slave->info.count; ch++) |
72 | slave->vals[ch] = uctl->value.integer.value[ch]; | 74 | slave->vals[ch] = uctl->value.integer.value[ch]; |
75 | error: | ||
73 | kfree(uctl); | 76 | kfree(uctl); |
74 | return 0; | 77 | return err < 0 ? err : 0; |
75 | } | 78 | } |
76 | 79 | ||
77 | /* get the slave ctl info and save the initial values */ | 80 | /* get the slave ctl info and save the initial values */ |