Kaydet (Commit) aa356e60 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#736024 help coverity out here

Change-Id: Ia89ed6792bbe84eb20a4b560b0dab4557ad6e8f9
üst 5e043613
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment