diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_event.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index da4e17f4a7c6..5a204aefc035 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -2263,6 +2263,11 @@ static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *s | |||
2263 | 2263 | ||
2264 | BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl); | 2264 | BT_DBG("%s num_hndl %d", hdev->name, ev->num_hndl); |
2265 | 2265 | ||
2266 | if (hdev->flow_ctl_mode != HCI_FLOW_CTL_MODE_PACKET_BASED) { | ||
2267 | BT_ERR("Wrong event for mode %d", hdev->flow_ctl_mode); | ||
2268 | return; | ||
2269 | } | ||
2270 | |||
2266 | if (skb->len < ev->num_hndl * 4) { | 2271 | if (skb->len < ev->num_hndl * 4) { |
2267 | BT_DBG("%s bad parameters", hdev->name); | 2272 | BT_DBG("%s bad parameters", hdev->name); |
2268 | return; | 2273 | return; |