[Libreoffice-commits] core.git: sc/source
Julien Nabet
serval2412 at yahoo.fr
Sun Jan 14 12:22:42 UTC 2018
sc/source/ui/view/tabvwshf.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 1d71f886d6760e5b3eeb4a0f9aaaead0816a45aa
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>
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