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

coverity#1209611 Explicit null dereferenced

Change-Id: I1efe68a3b63ddd4b1583a29dd8d71d217bfdd9a8
üst d348f398
......@@ -375,7 +375,7 @@ void SfxPickList::Notify( SfxBroadcaster&, const SfxHint& rHint )
{
SfxEventHint* pEventHint = PTR_CAST(SfxEventHint,&rHint);
// only ObjectShell-related events with media interest
SfxObjectShell* pDocSh = pEventHint->GetObjShell();
SfxObjectShell* pDocSh = pEventHint ? pEventHint->GetObjShell() : NULL;
if( !pDocSh )
return;
......
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