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

New commits:
commit 3f7eeb007050d7bc4606f3c3e8221175d92ab06b
Author: Justin Luth <justin_l...@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 <c...@libreoffice.org>
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@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;
         }
     }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to