]> git.baikalelectronics.ru Git - kernel.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>
Sat, 26 Jun 2021 05:12:24 +0000 (07:12 +0200)
commitaa31c5274baeb164fee94fa9609d32941d7f8bfc
tree6c8250719218df4cb3596fe1d9c35bc7c7a7d8c1
parent0493128f3b24fd0aa2ebe04ef6103d39cb63168b
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: 645f146b21b7 ("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