[Libreoffice-commits] core.git: lotuswordpro/source

Caolán McNamara caolanm at redhat.com
Thu Dec 10 01:17:42 PST 2015


 lotuswordpro/source/filter/lwppara.hxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 130eaf02de89c8996ff6e817a005993dcbd586e6
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Dec 10 09:16:59 2015 +0000

    guard against missing paragraph container
    
    Change-Id: I6ac074c7fe2821983b4a056e28fc5379f7a93974

diff --git a/lotuswordpro/source/filter/lwppara.hxx b/lotuswordpro/source/filter/lwppara.hxx
index 6e77876..a6d7563 100644
--- a/lotuswordpro/source/filter/lwppara.hxx
+++ b/lotuswordpro/source/filter/lwppara.hxx
@@ -323,6 +323,8 @@ inline OUString LwpPara::GetBulletStyleName() const
 }
 inline void LwpPara::AddXFContent(XFContent* pCont)
 {
+    if (!m_pXFContainer)
+        throw std::runtime_error("paragraph lacks container");
     m_pXFContainer->Add(pCont);
 }
 inline void LwpPara::SetXFContainer(XFContentContainer* pCont)


More information about the Libreoffice-commits mailing list