diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-13 11:04:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-13 11:04:43 +0000 |
commit | ddc7d96a399822c2f29dcaca8222dfb96c383576 (patch) | |
tree | 3ec13fcb5874b2982b13e0bd88d493a60738bf68 /lotuswordpro/source | |
parent | 4e6df6de1a95b6b4194cf930cabaae7fde3b6960 (diff) |
protect against missing Foundry
Change-Id: Ie5c0317f842258fe42f894dbace0ea0e328f288a
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwppagelayout.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx index 35476618df7e..e7fd45d272db 100644 --- a/lotuswordpro/source/filter/lwppagelayout.cxx +++ b/lotuswordpro/source/filter/lwppagelayout.cxx @@ -576,6 +576,8 @@ sal_Int32 LwpPageLayout::GetPageNumber(sal_uInt16 nLayoutNumber) { sal_Int16 nPageNumber = -1; LwpFoundry* pFoundry = this->GetFoundry(); + if (!pFoundry) + return nPageNumber; LwpDocument* pDoc = pFoundry->GetDocument(); LwpDLVListHeadTailHolder* pHeadTail = dynamic_cast<LwpDLVListHeadTailHolder*>(pDoc->GetPageHintsID().obj().get()); if(!pHeadTail) return nPageNumber; |