projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac71311
)
Bluetooth: Fix missing break in hci_cmd_complete_evt
author
Szymon Janc
<szymon.janc@tieto.com>
Fri, 13 Apr 2012 10:32:42 +0000
(12:32 +0200)
committer
Gustavo Padovan
<gustavo@padovan.org>
Tue, 24 Apr 2012 14:38:41 +0000
(11:38 -0300)
Command complete event for HCI_OP_USER_PASSKEY_NEG_REPLY would result
in calling handler function also for HCI_OP_LE_SET_SCAN_PARAM. This
could result in undefined behaviour.
Signed-off-by: Szymon Janc <szymon.janc@tieto.com>
Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
net/bluetooth/hci_event.c
patch
|
blob
|
blame
|
history
diff --git
a/net/bluetooth/hci_event.c
b/net/bluetooth/hci_event.c
index 6a72eaea70ee62b615344013ae5c9f9bd2e9e324..7f87a70b861869d1eda742603a56e574ff7c3314 100644
(file)
--- a/
net/bluetooth/hci_event.c
+++ b/
net/bluetooth/hci_event.c
@@
-2314,6
+2314,7
@@
static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *sk
case HCI_OP_USER_PASSKEY_NEG_REPLY:
hci_cc_user_passkey_neg_reply(hdev, skb);
+ break;
case HCI_OP_LE_SET_SCAN_PARAM:
hci_cc_le_set_scan_param(hdev, skb);