sc/source/filter/oox/worksheethelper.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 2570733873f233ca6983c075ea02734aca2a7472 Author: Noel Grandin <[email protected]> AuthorDate: Mon Jun 30 08:33:01 2025 +0200 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Mon Jun 30 14:13:11 2025 +0200 crashtesting forum-mso-en4-307539.xlsx regression from commit 79322a7025bb6fd61928204f90230560b09b4ba9 Author: Noel Grandin <[email protected]> Date: Wed May 21 15:28:41 2025 +0200 tdf#166684 strip out some unnecessary UNO work Change-Id: Ifab9b928f6c4dd660e9bf3812a8f6e4c2cd73b6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187160 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins (cherry picked from commit 8ebd114b91678d3cc4f1582fbe2ba4f7d479993e) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187161 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tomaž Vajngerl <[email protected]> diff --git a/sc/source/filter/oox/worksheethelper.cxx b/sc/source/filter/oox/worksheethelper.cxx index 0612be9807a8..fe9dd4e9320d 100644 --- a/sc/source/filter/oox/worksheethelper.cxx +++ b/sc/source/filter/oox/worksheethelper.cxx @@ -1088,6 +1088,8 @@ void WorksheetGlobals::finalizeValidationRanges() const for (auto const& validation : maValidations) { rtl::Reference<ScCellRangesObj> xRanges = getCellRangeList(validation.maRanges); + if (!xRanges) + continue; rtl::Reference<ScTableValidationObj> xValidation = xRanges->getValidation(); if( xValidation.is() )
