summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-09-05 20:43:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-09-06 10:08:45 +0200
commit00df1cd5d663216cf59465d3c6c23dafd0de6f81 (patch)
tree9bdec5c97b3ec8c0f1c553603393c4bcca1fc091
parent39214c54efbefb1d78754ad14f936882c326a482 (diff)
ofz#15225 Timeout cut out uninteresting slow path
Change-Id: Ia9c1187891e4bf5515417b2e5ffc093ef2335af3 Reviewed-on: https://gerrit.libreoffice.org/78674 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--sw/source/filter/html/swhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 0584da04d08b..535a2373a823 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -857,7 +857,7 @@ void SwHTMLParser::Continue( HtmlTokenId nToken )
}
// adjust AutoLoad in DocumentProperties
- if( IsNewDoc() )
+ if (!utl::ConfigManager::IsFuzzing() && IsNewDoc())
{
SwDocShell *pDocShell(m_xDoc->GetDocShell());
OSL_ENSURE(pDocShell, "no SwDocShell");