sanders: GPS: Update from LA.UM.7.6.2.r1-04200-89xx.0 and update GPS packages

Change-Id: I3111254674e24f8deb511a7de32f57ee5abe8911
This commit is contained in:
kubersharma001
2019-10-11 12:09:30 +05:30
committed by Jorge Lucas
parent d95e6a0094
commit 575fbce42c
35 changed files with 135 additions and 329 deletions

View File

@@ -328,9 +328,12 @@ void SystemStatusOsObserver::notify(const list<IDataItemCore*>& dlist)
for (auto client : clientSet) {
unordered_set<DataItemId> dataItemIdsForThisClient(
mParent->mClientToDataItems.getValSet(client));
for (auto id : dataItemIdsForThisClient) {
if (dataItemIdsToBeSent.find(id) == dataItemIdsToBeSent.end()) {
dataItemIdsForThisClient.erase(id);
for (auto itr = dataItemIdsForThisClient.begin();
itr != dataItemIdsForThisClient.end(); ) {
if (dataItemIdsToBeSent.find(*itr) == dataItemIdsToBeSent.end()) {
itr = dataItemIdsForThisClient.erase(itr);
} else {
itr++;
}
}