sc/source/core/data/documen4.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit ad352fee880c006a5ca57354b0552bc1f81a28fb Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Mon Apr 4 09:14:10 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Mon Apr 4 11:44:49 2022 +0200 ofz: Timeout Change-Id: Ic0ed98f878883c9e608a69b2735d2ab90e08c651 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132499 Tested-by: Caolán McNamara <caol...@redhat.com> 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 d19f9cedf91b..04732630b629 100644 --- a/sc/source/core/data/documen4.cxx +++ b/sc/source/core/data/documen4.cxx @@ -274,9 +274,9 @@ void ScDocument::InsertMatrixFormula(SCCOL nCol1, SCROW nRow1, if (utl::ConfigManager::IsFuzzing()) { // just too slow - if (nCol2 - nCol1 > 256) + if (nCol2 - nCol1 > 128) return; - if (nRow2 - nRow1 > 256) + if (nRow2 - nRow1 > 128) return; } assert( ValidColRow( nCol1, nRow1) && ValidColRow( nCol2, nRow2));