]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
Bluetooth: Fix address in unmergeable device found events
authorJohan Hedberg <johan.hedberg@intel.com>
Sat, 29 Mar 2014 06:39:53 +0000 (08:39 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 29 Mar 2014 07:50:24 +0000 (00:50 -0700)
When sending out a device found event caused by an advertising report in
the situation where we couldn't store the report as a pending one, the
code was incorrectly trying to use the address and address type from the
pending data. Since the pending data is cleared in the previous line
this causes a potentially incorrect address type and an address of
BDADDR_ANY. This patch fixes the call to use the address information
correctly from the received advertising report.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/hci_event.c

index ddb518c62ed1cc77eb14f0854d6a0afb7f03f707..84acc4aabc5f19d624483996e82bf4a29c2c9dea 100644 (file)
@@ -4081,9 +4081,8 @@ static void process_adv_report(struct hci_dev *hdev, u8 type, bdaddr_t *bdaddr,
                 * the pending report and send out a device found event.
                 */
                clear_pending_adv_report(hdev);
-               mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
-                                 d->last_adv_addr_type, NULL, rssi, 0, 1,
-                                 data, len, NULL, 0);
+               mgmt_device_found(hdev, bdaddr, LE_LINK, bdaddr_type, NULL,
+                                 rssi, 0, 1, data, len, NULL, 0);
                return;
        }