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

coverity#704809 Explicit null dereferenced

Change-Id: I8febb74648b409e214e805084682d932424252b3
üst df903c3e
...@@ -224,8 +224,11 @@ void Svx3DPreviewControl::SetObjectType(sal_uInt16 nType) ...@@ -224,8 +224,11 @@ void Svx3DPreviewControl::SetObjectType(sal_uInt16 nType)
break; break;
} }
mpScene->Insert3DObj( mp3DObj ); if (mp3DObj)
mp3DObj->SetMergedItemSet(aSet); {
mpScene->Insert3DObj( mp3DObj );
mp3DObj->SetMergedItemSet(aSet);
}
Resize(); Resize();
} }
......
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