Message ID | 96880a534a9c477c87ee9f57fa6ff7fd@SVR-IES-MBX-03.mgc.mentorg.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Bluetooth: A2MP: Fix zeroing rsp ID field | expand |
diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c index da7fd7c8c2dc..64e737883a0e 100644 --- a/net/bluetooth/a2mp.c +++ b/net/bluetooth/a2mp.c @@ -381,10 +381,10 @@ static int a2mp_getampassoc_req(struct amp_mgr *mgr, struct sk_buff *skb, hdev = hci_dev_get(req->id); if (!hdev || hdev->amp_type == AMP_TYPE_BREDR || tmp) { struct a2mp_amp_assoc_rsp rsp; -rsp.id = req->id; - memset(&rsp, 0, sizeof(rsp)); +rsp.id = req->id; + if (tmp) { rsp.status = A2MP_STATUS_COLLISION_OCCURED; amp_mgr_put(tmp);