projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
747da13
)
Bluetooth: hci_conn: add missing hci_dev_put() in iso_listen_bis()
author
Wang ShaoBo
<bobo.shaobowang@huawei.com>
Wed, 9 Nov 2022 02:39:06 +0000
(10:39 +0800)
committer
Luiz Augusto von Dentz
<luiz.von.dentz@intel.com>
Fri, 2 Dec 2022 21:09:30 +0000
(13:09 -0800)
hci_get_route() takes reference, we should use hci_dev_put() to release
it when not need anymore.
Fixes: f764a6c2c1e4 ("Bluetooth: ISO: Add broadcast support")
Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
net/bluetooth/iso.c
patch
|
blob
|
history
diff --git
a/net/bluetooth/iso.c
b/net/bluetooth/iso.c
index f825857db6d0b74656b3bd5742374b8ce48096bf..26db929b97c43fa486b73c80f43d946ff1651b5d 100644
(file)
--- a/
net/bluetooth/iso.c
+++ b/
net/bluetooth/iso.c
@@
-879,6
+879,7
@@
static int iso_listen_bis(struct sock *sk)
iso_pi(sk)->bc_sid);
hci_dev_unlock(hdev);
+ hci_dev_put(hdev);
return err;
}