sc/source/core/data/documen4.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 74a12d9710ba1a9855c6afb18055152120148833
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Fri Apr 1 17:21:42 2022 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Fri Apr 1 20:58:00 2022 +0200

    ofz#45529 Timeout
    
    Change-Id: I232d3c07623c7efbc7b0b910298bd77bf469a38b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132442
    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 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));

Reply via email to