Skip to content

Commit

Permalink
Bluetooth: HCI: Fix potential null-ptr-deref
Browse files Browse the repository at this point in the history
Fix potential null-ptr-deref in hci_le_big_sync_established_evt().

Fixes: f777d88 (Bluetooth: ISO: Notify user space about failed bis connections)
Signed-off-by: Sungwoo Kim <[email protected]>
Signed-off-by: Luiz Augusto von Dentz <[email protected]>
  • Loading branch information
swkim101 authored and Vudentz committed May 2, 2024
1 parent 93ff8ae commit 5c7d0f2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions net/bluetooth/hci_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -7069,6 +7069,8 @@ static void hci_le_big_sync_established_evt(struct hci_dev *hdev, void *data,
u16 handle = le16_to_cpu(ev->bis[i]);

bis = hci_conn_hash_lookup_handle(hdev, handle);
if (!bis)
continue;

set_bit(HCI_CONN_BIG_SYNC_FAILED, &bis->flags);
hci_connect_cfm(bis, ev->status);
Expand Down

0 comments on commit 5c7d0f2

Please sign in to comment.