diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-09-05 20:43:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-09-06 10:08:45 +0200 |
commit | 00df1cd5d663216cf59465d3c6c23dafd0de6f81 (patch) | |
tree | 9bdec5c97b3ec8c0f1c553603393c4bcca1fc091 /sw | |
parent | 39214c54efbefb1d78754ad14f936882c326a482 (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>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/swhtml.cxx | 2 |
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"); |