diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-09-18 14:52:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-09-18 17:28:11 +0200 |
commit | 0685678da0994103b14b9417c52310bd40e21102 (patch) | |
tree | 5925cd381b6ac4a682a1cbcbcbcd7dfc16c63481 | |
parent | d3f2d1e4e3b5f75dd1288d5f352b9fa7b36369af (diff) |
ofz#37911 Avoid timeout when fuzzing
Change-Id: I30bdcb3c267ee7e3ee0920df03ee8507d118d009
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122301
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | lotuswordpro/source/filter/lwpcelllayout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpcelllayout.cxx b/lotuswordpro/source/filter/lwpcelllayout.cxx index ef39c4ae1009..cd5478e3f5cd 100644 --- a/lotuswordpro/source/filter/lwpcelllayout.cxx +++ b/lotuswordpro/source/filter/lwpcelllayout.cxx @@ -821,7 +821,7 @@ void LwpConnectedCellLayout::Read() m_nRealrowspan = cnumrows; if (utl::ConfigManager::IsFuzzing()) - m_nRealrowspan = std::min<sal_uInt16>(m_nRealrowspan, SAL_MAX_INT16); + m_nRealrowspan = std::min<sal_uInt16>(m_nRealrowspan, 128); m_nRealcolspan = cnumcols; m_pObjStrm->SkipExtra(); |