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

coverity#440744 Dereference after null check

Change-Id: Id9ab2ffde8eb82e49164350d1703e4d93f96663e
üst 85344383
......@@ -1005,7 +1005,8 @@ short SfxTabDialog::Ok()
if ( pTabPage->FillItemSet( aTmp ) )
{
bModified |= sal_True;
pExampleSet->Put( aTmp );
if (pExampleSet)
pExampleSet->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