From 1abcf1bcbfa90ee1714b4d37fb38b639dabbcdfe Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Tue, 19 Apr 2016 09:23:30 +0100 Subject: tdf#99387 - protect LOK document size API from corner-cases. Change-Id: I5dd1d37ea783a65f0c8f3ad9c3c9cabf72ae036d Reviewed-on: https://gerrit.libreoffice.org/24239 Reviewed-by: Michael Meeks Tested-by: Michael Meeks --- sd/source/ui/unoidl/unomodel.cxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'sd') diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 449b54a1a60b..604d076a40b1 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -2352,7 +2352,13 @@ Size SdXImpressDocument::getDocumentSize() if (!pViewSh) return Size(); - SdrPageView* pCurPageView = pViewSh->GetView()->GetSdrPageView(); + SdrView *pSdrView = pViewSh->GetView(); + if (!pSdrView) + return Size(); + + SdrPageView* pCurPageView = pSdrView->GetSdrPageView(); + if (!pCurPageView) + return Size(); Size aSize = pCurPageView->GetPageRect().GetSize(); // Convert the size in 100th mm to TWIP -- cgit