[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-4' - lotuswordpro/source

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


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

New commits:
commit 76f5c0c7af8d1881b95196652d1c82561abf176a
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
    (cherry picked from commit 130eaf02de89c8996ff6e817a005993dcbd586e6)
    Reviewed-on: https://gerrit.libreoffice.org/20565
    Reviewed-by: David Tardon <dtardon at redhat.com>
    Tested-by: David Tardon <dtardon at redhat.com>
    Reviewed-by: Michael Stahl <mstahl at redhat.com>

diff --git a/lotuswordpro/source/filter/lwppara.hxx b/lotuswordpro/source/filter/lwppara.hxx
index d3d7bf6..57886ab 100644
--- a/lotuswordpro/source/filter/lwppara.hxx
+++ b/lotuswordpro/source/filter/lwppara.hxx
@@ -345,6 +345,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