coverity#736024 help coverity out here
Change-Id: Ia89ed6792bbe84eb20a4b560b0dab4557ad6e8f9
This commit is contained in:
parent
5e04361326
commit
aa356e6076
1 changed files with 5 additions and 3 deletions
|
@ -174,11 +174,13 @@ bool XMLEventsImportContext::GetEventSequence(
|
|||
}
|
||||
|
||||
// if we're not at the end, set the sequence
|
||||
bool bRet = (aIter != aCollectEvents.end());
|
||||
if (bRet)
|
||||
if (aIter != aCollectEvents.end())
|
||||
{
|
||||
rSequence = aIter->second;
|
||||
return true;
|
||||
}
|
||||
|
||||
return bRet;
|
||||
return false;
|
||||
}
|
||||
|
||||
void XMLEventsImportContext::AddEventValues(
|
||||
|
|
Loading…
Reference in a new issue