]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: core: Fix unexpected error at replacing user TLV
authorTakashi Iwai <tiwai@suse.de>
Tue, 22 Aug 2017 06:15:13 +0000 (08:15 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 22 Aug 2017 13:43:40 +0000 (15:43 +0200)
commitaff44ff790b883cf327c27e375e3b08bbf4e1eb8
treeef895c90efc68011841b0bbecc011b8fceb8926c
parent73ff033601a13b4d3049528d3729329b4d4d3952
ALSA: core: Fix unexpected error at replacing user TLV

When user tries to replace the user-defined control TLV, the kernel
checks the change of its content via memcmp().  The problem is that
the kernel passes the return value from memcmp() as is.  memcmp()
gives a non-zero negative value depending on the comparison result,
and this shall be recognized as an error code.

The patch covers that corner-case, return 1 properly for the changed
TLV.

Fixes: 2b5ccc5307b0 ("[ALSA] Control API - more robust TLV implementation")
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/control.c