mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
Avoid a potential NULL pointer reference in nrf52/BluetoothPhoneAPI (#5830)
This commit is contained in:
parent
fd60c9b3be
commit
124936b6cf
@ -44,11 +44,7 @@ class BluetoothPhoneAPI : public PhoneAPI
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Check the current underlying physical link to see if the client is currently connected
|
/// Check the current underlying physical link to see if the client is currently connected
|
||||||
virtual bool checkIsConnected() override
|
virtual bool checkIsConnected() override { return Bluefruit.connected(connectionHandle); }
|
||||||
{
|
|
||||||
BLEConnection *connection = Bluefruit.Connection(connectionHandle);
|
|
||||||
return connection->connected();
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static BluetoothPhoneAPI *bluetoothPhoneAPI;
|
static BluetoothPhoneAPI *bluetoothPhoneAPI;
|
||||||
|
Loading…
Reference in New Issue
Block a user