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

Justin Luth justin_luth at sil.org
Fri Aug 7 06:52:49 PDT 2015


 sw/source/filter/ww8/wrtw8nds.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3f7eeb007050d7bc4606f3c3e8221175d92ab06b
Author: Justin Luth <justin_luth at sil.org>
Date:   Wed Jul 29 09:47:32 2015 +0300

    related to tdf#87437:  prevent null pointer function call
    
    Fix for change id  Ia98017cbba7d3a43b67764ae0fa6447b7e90ca86
    
    Change-Id: Iad3d689f7a8dd612c31ea80c9502031a2dc0ed70
    Reviewed-on: https://gerrit.libreoffice.org/17391
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index 06c96de..544c094 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -2123,7 +2123,7 @@ void MSWordExportBase::OutputTextNode( const SwTextNode& rNode )
     if ( pTextNodeInfo.get() != NULL )
     {
         pTextNodeInfoInner = pTextNodeInfo->getFirstInner();
-        if ( pTextNodeInfoInner->isEndOfCell() ) {
+        if ( pTextNodeInfoInner && pTextNodeInfoInner->isEndOfCell() ) {
             bIsEndOfCell = true;
         }
     }


More information about the Libreoffice-commits mailing list