ofz: Out-of-memory, reduce max row allowed for TableOp when fuzzing

Change-Id: I6268a9974591f86c5918d1171bd8c5ae0a25a538
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120952
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx
index c8bae9a..6ecde0fb 100644
--- a/sc/source/filter/excel/impop.cxx
+++ b/sc/source/filter/excel/impop.cxx
@@ -1106,7 +1106,7 @@ void ImportExcel::TableOp()
    if (utl::ConfigManager::IsFuzzing())
    {
        //shrink to smallish arbitrary value to not timeout
        nLastRow = std::min<sal_uInt16>(nLastRow, MAXROW_30);
        nLastRow = std::min<sal_uInt16>(nLastRow, MAXROW_30 / 2);
    }

    if( GetRoot().GetDoc().ValidColRow( nLastCol, nLastRow ) )