Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 63128451 authored by Vinicius Costa Gomes's avatar Vinicius Costa Gomes Committed by Gustavo Padovan
Browse files

Bluetooth: Fix crash when setting a LE socket to ready



We should not try to do any other type of configuration for
LE links when they become ready.

Signed-off-by: default avatarVinicius Costa Gomes <vinicius.gomes@openbossa.org>
Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent a7925bd2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -918,11 +918,11 @@ static void l2cap_conn_ready(struct l2cap_conn *conn)

		bh_lock_sock(sk);

		if (conn->hcon->type == LE_LINK)
		if (conn->hcon->type == LE_LINK) {
			if (smp_conn_security(conn, chan->sec_level))
				l2cap_chan_ready(sk);

		if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
		} else if (chan->chan_type != L2CAP_CHAN_CONN_ORIENTED) {
			__clear_chan_timer(chan);
			l2cap_state_change(chan, BT_CONNECTED);
			sk->sk_state_change(sk);