vcl/source/outdev/textline.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 45934a7b57a519e751beb27d6e1ced72e896dc58 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Tue Sep 3 08:46:20 2024 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Tue Sep 3 10:02:24 2024 +0200 ofz#70815 Timeout, reduce this limit for fuzzing Change-Id: I49f971796ed880f14514cc3f52bcd4405c16ecce Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172787 Tested-by: Caolán McNamara <caolan.mcnam...@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/vcl/source/outdev/textline.cxx b/vcl/source/outdev/textline.cxx index fa9f481c201c..20315c6c6aaa 100644 --- a/vcl/source/outdev/textline.cxx +++ b/vcl/source/outdev/textline.cxx @@ -354,7 +354,7 @@ void OutputDevice::ImplDrawStraightTextLine( tools::Long nBaseX, tools::Long nBa bool bIsAbove ) { static bool bFuzzing = comphelper::IsFuzzing(); - if (bFuzzing && nWidth > 100000) + if (bFuzzing && nWidth > 25000) { SAL_WARN("vcl.gdi", "drawLine, skipping suspicious TextLine of length: " << nWidth << " for fuzzing performance");