mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-24 14:10:55 +01:00
NimBLEScan: Corrected ::erase() iteration
This commit is contained in:
parent
6f4ee4b498
commit
08fc2878e7
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ void NimBLEScan::stop() {
|
||||||
void NimBLEScan::erase(const NimBLEAddress &address) {
|
void NimBLEScan::erase(const NimBLEAddress &address) {
|
||||||
NIMBLE_LOGI(LOG_TAG, "erase device: %s", address.toString().c_str());
|
NIMBLE_LOGI(LOG_TAG, "erase device: %s", address.toString().c_str());
|
||||||
|
|
||||||
for(auto it = m_scanResults.m_advertisedDevicesVector.begin(); it != m_scanResults.m_advertisedDevicesVector.begin(); ++it) {
|
for(auto it = m_scanResults.m_advertisedDevicesVector.begin(); it != m_scanResults.m_advertisedDevicesVector.end(); ++it) {
|
||||||
if((*it)->getAddress() == address) {
|
if((*it)->getAddress() == address) {
|
||||||
delete *it;
|
delete *it;
|
||||||
m_scanResults.m_advertisedDevicesVector.erase(it);
|
m_scanResults.m_advertisedDevicesVector.erase(it);
|
||||||
|
|
Loading…
Reference in a new issue