lotuswordpro/source/filter/lwppagelayout.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 22ee3194c930682ad8ac7f994084e877aa00d191 Author: Caolán McNamara <caol...@redhat.com> Date: Thu Dec 10 09:42:04 2015 +0000 guard against missing Foundry Change-Id: I9147dc2bab312639a04d2e822cf99745d38d3b8d diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx index 8499126..7674868 100644 --- a/lotuswordpro/source/filter/lwppagelayout.cxx +++ b/lotuswordpro/source/filter/lwppagelayout.cxx @@ -264,8 +264,8 @@ void LwpPageLayout::ParseBackColor(XFPageMaster* pm1) void LwpPageLayout::ParseFootNoteSeparator(XFPageMaster * pm1) { //Get the footnoteoptions for the root document - LwpDocument* pDocument = m_pFoundry->GetDocument(); - if(pDocument) + LwpDocument* pDocument = m_pFoundry ? m_pFoundry->GetDocument() : nullptr; + if (pDocument) { LwpObjectID* pFontnodeId = pDocument->GetValidFootnoteOpts();
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits