Fix unable to clear existing event bitmasks
Fix for an issue updateEvtMask call chain is unable to clear existing event bitmasks stored in LocApiV02. Change-Id: Id34e2d92a506e7300f3d9b3ec74a80a1f6822787 CRs-Fixed: 2085379
This commit is contained in:
parent
099f9405b1
commit
4d8fc57928
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ void LocApiBase::addAdapter(LocAdapterBase* adapter)
|
||||||
if (mLocAdapters[i] == NULL) {
|
if (mLocAdapters[i] == NULL) {
|
||||||
mLocAdapters[i] = adapter;
|
mLocAdapters[i] = adapter;
|
||||||
mMsgTask->sendMsg(new LocOpenMsg(this,
|
mMsgTask->sendMsg(new LocOpenMsg(this,
|
||||||
(adapter->getEvtMask())));
|
mMask | adapter->getEvtMask()));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue