summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2023-04-24 20:08:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2023-04-25 10:05:40 +0200
commitb3d6c521c1e1fc6a1e84940c19cb2e18157e877f (patch)
treed98f733a1bdd88650f9f0640a1f5614db167c2c2 /vcl/source
parent3c2e4d454aaabcd61593e670a90638a185046539 (diff)
ofz#57493 avoid Timeout
Change-Id: I9fee1ad3467c18d2714ef211f2c95c6b4211415b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150946 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/gdi/metaact.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index 6f4f75ccc4ba..00921c609bca 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -889,7 +889,7 @@ static bool AllowScale(const Size& rSource, const Size& rDest)
static bool bFuzzing = utl::ConfigManager::IsFuzzing();
if (bFuzzing)
{
- constexpr int nMaxScaleWhenFuzzing = 256;
+ constexpr int nMaxScaleWhenFuzzing = 128;
auto nSourceHeight = rSource.Height();
auto nDestHeight = rDest.Height();