Skip to content

Commit 9c76fff

Browse files
iulia-tanasescuVudentz
authored andcommitted
Bluetooth: iso: Always release hdev at the end of iso_listen_bis
Since hci_get_route holds the device before returning, the hdev should be released with hci_dev_put at the end of iso_listen_bis even if the function returns with an error. Fixes: 02171da ("Bluetooth: ISO: Add hcon for listening bis sk") Signed-off-by: Iulia Tanasescu <iulia.tanasescu@nxp.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
1 parent 581dd2d commit 9c76fff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

net/bluetooth/iso.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1158,10 +1158,9 @@ static int iso_listen_bis(struct sock *sk)
11581158
goto unlock;
11591159
}
11601160

1161-
hci_dev_put(hdev);
1162-
11631161
unlock:
11641162
hci_dev_unlock(hdev);
1163+
hci_dev_put(hdev);
11651164
return err;
11661165
}
11671166

0 commit comments

Comments
 (0)