]> 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>
Sun, 31 Jan 2016 19:25:46 +0000 (11:25 -0800)
commit6f54677f06bf3fd3c3f327d14ded94a0330d8d0c
tree086d2fc9198ce278ec8c1c3cf087640cdd9d4b51
parent869859fc2382474ce586953c391776ded5b2c548
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