diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-02-03 17:23:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-02-04 17:00:28 +0000 |
commit | 964486f514049de4dd77edbec3c090f5e84a3979 (patch) | |
tree | 2d28ac27839aedc7626431c4c92d768feeb2e903 /vcl | |
parent | 462bbf692e41897552b4f4e1f9e4f033e5f76643 (diff) |
ofz#55620 Timeout
Change-Id: I3d18e67a39523e508475b5f8586d92373be4f8b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146552
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/textline.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/textline.cxx b/vcl/source/outdev/textline.cxx index 8a19f9dcbb8e..2aebffb4c8b2 100644 --- a/vcl/source/outdev/textline.cxx +++ b/vcl/source/outdev/textline.cxx @@ -277,7 +277,7 @@ void OutputDevice::ImplDrawWaveTextLine( tools::Long nBaseX, tools::Long nBaseY, bool bIsAbove ) { static bool bFuzzing = utl::ConfigManager::IsFuzzing(); - if (bFuzzing && nWidth > 10000000) + if (bFuzzing && nWidth > 1000000) { SAL_WARN("vcl.gdi", "drawLine, skipping suspicious WaveTextLine of length: " << nWidth << " for fuzzing performance"); |