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

coverity#704763 Dereference after null check

Change-Id: I7d78ef1ffc939602baf9a16c4ca18b8f5f4c4d48
üst 65090036
......@@ -741,7 +741,8 @@ void SAL_CALL SlideshowImpl::disposing()
Size aVisSizePixel = pActWin->GetOutputSizePixel();
Rectangle aVisAreaWin = pActWin->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
mpViewShell->VisAreaChanged(aVisAreaWin);
mpView->VisAreaChanged(pActWin);
if (mpView)
mpView->VisAreaChanged(pActWin);
pActWin->GrabFocus();
}
}
......
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