summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/core/data/documen4.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/documen4.cxx b/sc/source/core/data/documen4.cxx
index 9ec96b77b243..d19f9cedf91b 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 > 1024)
+ if (nCol2 - nCol1 > 256)
return;
- if (nRow2 - nRow1 > 1024)
+ if (nRow2 - nRow1 > 256)
return;
}
assert( ValidColRow( nCol1, nRow1) && ValidColRow( nCol2, nRow2));