coverity#1266454 Explicit null dereferenced
Change-Id: Ic8f13e9bd3755c9ccb59d173ac0a36be1d06a2f4
This commit is contained in:
@@ -1663,9 +1663,11 @@ namespace accessibility
|
||||
{
|
||||
break;
|
||||
}
|
||||
if( nIndex >= reeBegin && nIndex < reeEnd )
|
||||
if (!ree.pFieldItem)
|
||||
continue;
|
||||
if (nIndex >= reeBegin && nIndex < reeEnd)
|
||||
{
|
||||
if(ree.pFieldItem->GetField()->GetClassId() != text::textfield::Type::URL)
|
||||
if (ree.pFieldItem->GetField()->GetClassId() != text::textfield::Type::URL)
|
||||
{
|
||||
nFoundFieldIndex = j;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user