]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: seq: Fix missing NULL check at remove_events ioctl
authorTakashi Iwai <tiwai@suse.de>
Tue, 12 Jan 2016 11:38:02 +0000 (12:38 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jan 2016 05:57:06 +0000 (21:57 -0800)
commit9174b70002e1497e93242de7570a842497b3de97
tree7f2fb4e3e578ca29b2ab661198071c45a7e73d76
parentc2b1a4d15af450d08fc8833c9228d5e89700bda0
ALSA: seq: Fix missing NULL check at remove_events ioctl

commit 030e2c78d3a91dd0d27fef37e91950dde333eba1 upstream.

snd_seq_ioctl_remove_events() calls snd_seq_fifo_clear()
unconditionally even if there is no FIFO assigned, and this leads to
an Oops due to NULL dereference.  The fix is just to add a proper NULL
check.

Reported-by: Dmitry Vyukov <dvyukov@google.com>
Tested-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/core/seq/seq_clientmgr.c