aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWang ShaoBo <bobo.shaobowang@huawei.com>2022-11-09 10:39:06 +0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-12-02 13:09:30 -0800
commit7e7df2c10c92cab7d1dde3b301e584e2e877fbda (patch)
treedd2ec5d22325c00fa5abea2af32684c13be8f088
parent747da1308bdd5021409974f9180f0d8ece53d142 (diff)
downloadlinux-loongson-7e7df2c10c92cab7d1dde3b301e584e2e877fbda.tar.gz
Bluetooth: hci_conn: add missing hci_dev_put() in iso_listen_bis()
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>
-rw-r--r--net/bluetooth/iso.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/iso.c b/net/bluetooth/iso.c
index f825857db6d0b..26db929b97c43 100644
--- 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;
}