[Libreoffice-commits] core.git: sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Mar 7 21:23:48 UTC 2020
sc/source/filter/excel/read.cxx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
New commits:
commit b7d10989d6d7bdbd156288a3773e2da94c97a77e
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Mar 7 19:43:11 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Mar 7 22:23:17 2020 +0100
ofz#20463 Timeout
Change-Id: I7707451573a57e99e9f417617b733a00ea991c0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90176
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/source/filter/excel/read.cxx b/sc/source/filter/excel/read.cxx
index 6e5cfeb16b56..62343d79b74c 100644
--- a/sc/source/filter/excel/read.cxx
+++ b/sc/source/filter/excel/read.cxx
@@ -41,6 +41,8 @@
#include <imp_op.hxx>
#include <excimp8.hxx>
+#include <unotools/configmgr.hxx>
+
#include <memory>
namespace
@@ -773,7 +775,8 @@ ErrCode ImportExcel::Read()
pProgress.reset();
GetDocImport().finalize();
- AdjustRowHeight();
+ if (!utl::ConfigManager::IsFuzzing())
+ AdjustRowHeight();
PostDocLoad();
pD->CalcAfterLoad(false);
More information about the Libreoffice-commits
mailing list