Commit 9c76fff7 authored by Iulia Tanasescu's avatar Iulia Tanasescu Committed by Luiz Augusto von Dentz
Browse files

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: 02171da6 ("Bluetooth: ISO: Add hcon for listening bis sk")
Signed-off-by: default avatarIulia Tanasescu <iulia.tanasescu@nxp.com>
Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
parent 581dd2dc
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1158,10 +1158,9 @@ static int iso_listen_bis(struct sock *sk)
		goto unlock;
	}

	hci_dev_put(hdev);

unlock:
	hci_dev_unlock(hdev);
	hci_dev_put(hdev);
	return err;
}