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

coverity#1265801 Dereference null return value

Change-Id: I7ac111ad66dd51d13df866bac4396cdb2aecb27e
üst c7949a94
......@@ -156,8 +156,7 @@ void DrawViewShell::ExecAnimationWin( SfxRequest& rReq )
SfxChildWindow* pWnd = GetViewFrame()->GetChildWindow(nId);
pAnimWin = pWnd ? static_cast<AnimationWindow*>(
GetViewFrame()->GetChildWindow(nId)->GetWindow()) : NULL;
pAnimWin = pWnd ? static_cast<AnimationWindow*>(pWnd->GetWindow()) : NULL;
if ( pAnimWin )
{
......
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