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

Caolán McNamara caolanm at redhat.com
Wed Dec 9 04:58:33 PST 2015


 lotuswordpro/source/filter/lwpfribsection.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 74a030fb0a90da422f650772da49348ccd84b0b0
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Dec 9 12:50:57 2015 +0000

    guard against missing Section
    
    Change-Id: Id5295d294b56d6504d962ee1941a350a595031e7
    (cherry picked from commit c8b4fe55b8b50fc33a9157e93b42aed0f7d30534)
    Reviewed-on: https://gerrit.libreoffice.org/20520
    Reviewed-by: David Tardon <dtardon at redhat.com>
    Tested-by: David Tardon <dtardon at redhat.com>

diff --git a/lotuswordpro/source/filter/lwpfribsection.cxx b/lotuswordpro/source/filter/lwpfribsection.cxx
index f66b00f..b870488 100644
--- a/lotuswordpro/source/filter/lwpfribsection.cxx
+++ b/lotuswordpro/source/filter/lwpfribsection.cxx
@@ -167,7 +167,8 @@ void LwpFribSection::ParseSection()
     else
     {
         LwpStory* pStory = static_cast<LwpStory*> ( m_pPara->GetStoryID().obj().get() );
-        if (m_Section.obj()->GetTag() == VO_INDEXSECTION)
+        rtl::Reference<LwpObject> xObj(m_Section.obj());
+        if (xObj.is() && xObj->GetTag() == VO_INDEXSECTION)
         {
             //create a new section and add it to container
             XFIndex* pIndex = new XFIndex;


More information about the Libreoffice-commits mailing list