sc/source/core/data/documen4.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit cbf9f638807736e69a5863a19128ade085b1a187 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Tue Apr 12 12:45:20 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Tue Apr 12 20:52:53 2022 +0200 ofz#46352 Timeout Change-Id: I4544c9c15ec26fb1c27ec0f28ef956320d06a149 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132900 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> diff --git a/sc/source/core/data/documen4.cxx b/sc/source/core/data/documen4.cxx index cf8d2e4a1431..271e07619ef8 100644 --- a/sc/source/core/data/documen4.cxx +++ b/sc/source/core/data/documen4.cxx @@ -275,9 +275,9 @@ void ScDocument::InsertMatrixFormula(SCCOL nCol1, SCROW nRow1, if (utl::ConfigManager::IsFuzzing()) { // just too slow - if (nCol2 - nCol1 > 128) + if (nCol2 - nCol1 > 64) return; - if (nRow2 - nRow1 > 128) + if (nRow2 - nRow1 > 64) return; } assert( ValidColRow( nCol1, nRow1) && ValidColRow( nCol2, nRow2));