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

Commit c80da27e authored by Johan Hedberg's avatar Johan Hedberg
Browse files

Bluetooth: mgmt: Fix clearing of hdev->eir



The hdev->eir buffer needs to be cleared when clearing the EIR data.
Otherwise subsequent attempts at setting the EIR to something valid
again may fail because the code thinks that the EIR hasn't changed.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 5fc6ebb1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3400,6 +3400,8 @@ static int clear_eir(struct hci_dev *hdev)
	if (!(hdev->features[6] & LMP_EXT_INQ))
		return 0;

	memset(hdev->eir, 0, sizeof(hdev->eir));

	memset(&cp, 0, sizeof(cp));

	return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);