]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: drivers: opl3: Fix incorrect use of vp->state
authorColin Ian King <colin.i.king@gmail.com>
Sun, 12 Dec 2021 17:20:25 +0000 (17:20 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Dec 2021 11:20:46 +0000 (12:20 +0100)
commit9f8daff52b344d729ccecce07df66e2aad33a76a
tree813649351fd7a64b7b53de61fde63722fc6f7bfb
parent86e1ad26cb4b93ac5061d3fdbdc459b4e6561f9d
ALSA: drivers: opl3: Fix incorrect use of vp->state

commit 2dee54b289fbc810669a1b2b8a0887fa1c9a14d7 upstream.

Static analysis with scan-build has found an assignment to vp2 that is
never used. It seems that the check on vp->state > 0 should be actually
on vp2->state instead. Fix this.

This dates back to 2002, I found the offending commit from the git
history git://git.kernel.org/pub/scm/linux/kernel/git/tglx/history.git,
commit 91e39521bbf6 ("[PATCH] ALSA patch for 2.5.4")

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20211212172025.470367-1-colin.i.king@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/drivers/opl3/opl3_midi.c