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

coverity#704601 Dereference after null check

Change-Id: Icfef8f4ded311790a90b61b37c08254592d979ab
üst bf48d61f
...@@ -463,7 +463,8 @@ void IconChoiceDialog::DeActivatePageImpl () ...@@ -463,7 +463,8 @@ void IconChoiceDialog::DeActivatePageImpl ()
if ( ( DeactivateRC::LeavePage & nRet ) && if ( ( DeactivateRC::LeavePage & nRet ) &&
aTmp.Count() ) aTmp.Count() )
{ {
pExampleSet->Put( aTmp ); if (pExampleSet)
pExampleSet->Put(aTmp);
pOutSet->Put( aTmp ); pOutSet->Put( aTmp );
} }
} }
......
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