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

Julien Nabet serval2412 at yahoo.fr
Tue Jan 16 11:35:30 UTC 2018


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

New commits:
commit 965d2060880096f4ad6381e16ec11d58fbae2d31
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/47860
    Reviewed-by: Eike Rathke <erack at redhat.com>

diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 03b35199c6b2..169be29ec220 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -611,7 +611,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