]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: vmaster: Propagate slave error
authorTakashi Iwai <tiwai@suse.de>
Thu, 8 Mar 2018 07:26:48 +0000 (08:26 +0100)
committerTakashi Iwai <tiwai@suse.de>
Thu, 8 Mar 2018 07:41:12 +0000 (08:41 +0100)
commitbf9321f9e415339ef2d6b87cb974134d0b6a15d4
tree8f0f0e6d1f51b3541fcf71f207b1496dd411fddc
parent8bb2267f0e0ae9e8614f545280cba7cbc2ab7072
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>
sound/core/vmaster.c