[Libreoffice-commits] core.git: Branch 'libreoffice-6-0-0' - sc/source

Julien Nabet serval2412 at yahoo.fr
Wed Jan 17 11:00:34 UTC 2018


 sc/source/ui/view/tabvwshf.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a90b9159d504a9caa71f30a723d559a5d36fc23b
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Jan 14 10:20:09 2018 +0100

    tdf#114992: fix crash in deleting sheet
    
    See bt:
    https://bugs.documentfoundation.org/attachment.cgi?id=139087
    
    Change-Id: Iee72385a8e5400436da72fe5e18b8cdfccad193d
    Reviewed-on: https://gerrit.libreoffice.org/47850
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    (cherry picked from commit 1d71f886d6760e5b3eeb4a0f9aaaead0816a45aa)
    Reviewed-on: https://gerrit.libreoffice.org/47894
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Reviewed-by: Michael Stahl <mstahl at redhat.com>
    Tested-by: Michael Stahl <mstahl at redhat.com>

diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 3cbe8c83aa8f..f315b6cbe89f 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -612,7 +612,7 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
                                 {
                                     const ScDPObject& rDPObj = (*pDPs)[i];
                                     const ScSheetSourceDesc* pSheetSourceDesc = rDPObj.GetSheetDesc();
-                                    if (pSheetSourceDesc->GetSourceRange().aStart.Tab() == nSelTab)
+                                    if (pSheetSourceDesc && pSheetSourceDesc->GetSourceRange().aStart.Tab() == nSelTab)
                                         bTabWithPivotTable = true;
                                 }
                             }


More information about the Libreoffice-commits mailing list