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

coverity#704753 Dereference after null check

Change-Id: I4886995b925e3332e67d08a60e53a251be9f81e5
üst c8bb0b24
...@@ -480,7 +480,7 @@ const SfxItemSet* FuPage::ExecuteDialog( Window* pParent ) ...@@ -480,7 +480,7 @@ const SfxItemSet* FuPage::ExecuteDialog( Window* pParent )
void FuPage::ApplyItemSet( const SfxItemSet* pArgs ) void FuPage::ApplyItemSet( const SfxItemSet* pArgs )
{ {
if( !pArgs ) if (!pArgs || !mpDrawViewShell)
return; return;
// Set new page-attributes // Set new page-attributes
......
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