]> www.infradead.org Git - users/jedix/linux-maple.git/commit
Bluetooth: virtio_bt: add missing null pointer check on alloc_skb call return
authorColin Ian King <colin.king@canonical.com>
Fri, 9 Apr 2021 16:53:14 +0000 (17:53 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 4 May 2021 13:20:29 +0000 (15:20 +0200)
commit9a5e130f1f78c9a480a494e88c924dc529ac04e9
tree6073f6b8aaa4b777eadee56cc017feecaa62058e
parentdec709145dfc91f85696b9a724f416aa15163d62
Bluetooth: virtio_bt: add missing null pointer check on alloc_skb call return

The call to alloc_skb with the GFP_KERNEL flag can return a null sk_buff
pointer, so add a null check to avoid any null pointer deference issues.

Addresses-Coverity: ("Dereference null return value")
Fixes: afd2daa26c7a ("Bluetooth: Add support for virtio transport driver")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/virtio_bt.c