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

coverity#705522 Dereference null return value

Change-Id: Icf9e49d12b593c590287be9952dfe8d722613a86
üst 0c4bda19
......@@ -601,7 +601,7 @@ uno::Any SAL_CALL SwXMailMerge::execute(
}
SfxViewFrame* pFrame = SfxViewFrame::GetFirst( xCurDocSh, sal_False);
SwView *pView = PTR_CAST( SwView, pFrame->GetViewShell() );
SwView *pView = pFrame ? PTR_CAST( SwView, pFrame->GetViewShell() ) : NULL;
if (!pView)
throw RuntimeException();
SwWrtShell &rSh = *pView->GetWrtShellPtr();
......
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