sc/source/core/data/dociter.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 8f4df88ad1e3626610588a1e775861ee929e47aa Author: Noel Grandin <[email protected]> AuthorDate: Wed Feb 3 15:19:20 2021 +0200 Commit: Thorsten Behrens <[email protected]> CommitDate: Sat Dec 9 14:28:40 2023 +0100 tdf#140014 calc crash on COUNTIF regression from jumbo-sheets work Change-Id: I207cf3cc4c6d295688936ea3b672b32f9c09d89a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110349 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx index ed55445d0558..6815b3693ee4 100644 --- a/sc/source/core/data/dociter.cxx +++ b/sc/source/core/data/dociter.cxx @@ -1460,6 +1460,8 @@ ScCountIfCellIterator::ScCountIfCellIterator(ScDocument* pDocument, const ScInte mrContext( rContext ), nTab( nTable) { + maParam.nCol1 = rDoc.maTabs[nTable]->ClampToAllocatedColumns(maParam.nCol1); + maParam.nCol2 = rDoc.maTabs[nTable]->ClampToAllocatedColumns(maParam.nCol2); nCol = maParam.nCol1; nRow = maParam.nRow1; }
