Commit ecffc804 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Johan Hedberg

Bluetooth: btusb: Fix memory leak in Intel setup routine

The SKB returned from the Intel specific version information command is
missing a kfree_skb.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Cc: stable@vger.kernel.org
parent 781f899f
...@@ -1616,6 +1616,8 @@ static int btusb_setup_intel(struct hci_dev *hdev) ...@@ -1616,6 +1616,8 @@ static int btusb_setup_intel(struct hci_dev *hdev)
} }
fw_ptr = fw->data; fw_ptr = fw->data;
kfree_skb(skb);
/* This Intel specific command enables the manufacturer mode of the /* This Intel specific command enables the manufacturer mode of the
* controller. * controller.
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment