summaryrefslogtreecommitdiff
path: root/sw/source/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-11-03 15:56:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2022-11-04 10:12:17 +0100
commitf633ca7fcdc64a2d30f1682a7dda51fd9f693879 (patch)
tree0417df8baed16136ccd35a958eaf8d05af50ab1b /sw/source/filter
parent20926c0a7559ea9c4f82c662f11a395fa1eb79a3 (diff)
ofz#52830 skip slow path for fuzzing
Change-Id: Ic19f71200b862469978e55789ef879d680440a96 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142244 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/filter')
-rw-r--r--sw/source/filter/html/htmldrawreader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmldrawreader.cxx b/sw/source/filter/html/htmldrawreader.cxx
index ac4582e55bd5..b57b4e4b2cf0 100644
--- a/sw/source/filter/html/htmldrawreader.cxx
+++ b/sw/source/filter/html/htmldrawreader.cxx
@@ -538,7 +538,7 @@ void SwHTMLParser::EndMarquee()
static_cast<SdrTextObj*>(m_pMarquee.get())->SetText( m_aContents );
m_pMarquee->SetMergedItemSetAndBroadcast( m_pMarquee->GetMergedItemSet() );
- if( m_bFixMarqueeWidth )
+ if (m_bFixMarqueeWidth && !m_bFuzzing)
{
// adjust the size to the text
static_cast<SdrTextObj*>(m_pMarquee.get())->FitFrameToTextSize();