diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-22 21:07:00 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:28:23 +0000 |
commit | 297c78b819f8bae726d9d4b9c749cc21223dd78b (patch) | |
tree | 385ca4a5b10c38c4670c3492f3658e441d75ce31 /sfx2 | |
parent | fedebb269e815a3475cefc21556031e09bb3f35e (diff) |
coverity#441618 Dereference null return value
Change-Id: Id3e2ba08093bc618c17485122579898301df14d8
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/view/frame.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx index 357b3e102e73..f565c8b54a2c 100644 --- a/sfx2/source/view/frame.cxx +++ b/sfx2/source/view/frame.cxx @@ -910,7 +910,8 @@ void SfxFrame::Resize() if ( nHandle ) { SfxObjectShell* pDoc = reinterpret_cast< SfxObjectShell* >( sal::static_int_cast< sal_IntPtr >( nHandle )); - pWork = SfxViewFrame::GetFirst( pDoc )->GetFrame().GetWorkWindow_Impl(); + SfxViewFrame *pFrame = SfxViewFrame::GetFirst( pDoc ); + pWork = pFrame ? pFrame->GetFrame().GetWorkWindow_Impl() : NULL; } } |