Commit 9219b2a0 authored by Gustavo F. Padovan's avatar Gustavo F. Padovan

Bluetooth: Fix bacpy in l2cap_core.c

It should be the dst in the copy not src. 03a00194 introduced this bug.
Reported-by: default avatarVinicius Costa Gomes <vinicius.gomes@openbossa.org>
Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent 4ae1652e
...@@ -1190,7 +1190,7 @@ inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdad ...@@ -1190,7 +1190,7 @@ inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdad
} }
/* Set destination address and psm */ /* Set destination address and psm */
bacpy(&bt_sk(sk)->dst, src); bacpy(&bt_sk(sk)->dst, dst);
chan->psm = psm; chan->psm = psm;
chan->dcid = cid; chan->dcid = cid;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment