diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-05-17 20:27:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-05-18 00:12:32 +0200 |
commit | b2467d6c7af988f8ed4e090ebf9472be6c84fb06 (patch) | |
tree | 19de4eb115b69bb34239fb745992d0eac4a6b307 /vcl | |
parent | 35d1c2e3906a64e54f25539bf229959203ac6526 (diff) |
ofz#46060 Timeout
Change-Id: I157c8e12ffd33f320b1b21232afd74c83891f915
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134492
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/region.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx index 1f947f9b68fc..576ae0eb2e10 100644 --- a/vcl/source/gdi/region.cxx +++ b/vcl/source/gdi/region.cxx @@ -989,7 +989,7 @@ void vcl::Region::Intersect( const vcl::Region& rRegion ) return; } - static size_t gPointLimit = !utl::ConfigManager::IsFuzzing() ? SAL_MAX_SIZE : SAL_MAX_INT16; + static size_t gPointLimit = !utl::ConfigManager::IsFuzzing() ? SAL_MAX_SIZE : 8192; size_t nPointLimit(gPointLimit); const basegfx::B2DPolyPolygon aClip( basegfx::utils::clipPolyPolygonOnPolyPolygon( |