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

Markus Mohrhard markus.mohrhard at googlemail.com
Mon Jul 3 09:40:10 UTC 2017


 sc/source/core/data/documen7.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 448024d6b63b45e5c5f403ed2e909059ddcb09bd
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Fri Jun 30 13:59:57 2017 +0200

    pBASM can be nullptr in copy docs, e.g. during insert sheet from doc
    
    Found through http://crashreport.libreoffice.org/stats/crash_details/3bd264ba-ec12-476a-9bb4-e832caca3445
    
    Change-Id: I0a4e6dddca61a2538c0fe6bbc51770a9886c464d
    Reviewed-on: https://gerrit.libreoffice.org/39411
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    (cherry picked from commit caf1ddedbef77ac648d8b8b35978a0613aa77da6)
    Reviewed-on: https://gerrit.libreoffice.org/39423
    Reviewed-by: Eike Rathke <erack at redhat.com>

diff --git a/sc/source/core/data/documen7.cxx b/sc/source/core/data/documen7.cxx
index 1dc49fd5b2e7..8ab7e6014266 100644
--- a/sc/source/core/data/documen7.cxx
+++ b/sc/source/core/data/documen7.cxx
@@ -556,6 +556,9 @@ void ScDocument::FinalTrackFormulas( SfxHintId nHintId )
  */
 void ScDocument::TrackFormulas( SfxHintId nHintId )
 {
+    if (!pBASM)
+        return;
+
     if (pBASM->IsInBulkBroadcast() && !IsFinalTrackFormulas() && nHintId == SfxHintId::ScDataChanged)
     {
         SetTrackFormulasPending();


More information about the Libreoffice-commits mailing list