diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-10-21 16:15:53 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-10-21 20:45:33 +0200 |
commit | dffe85aaf3443ab2286eb9990c1c7faa692ec96f (patch) | |
tree | c767c15995e052cc03c6806e1178bda5281c847c /editeng/source | |
parent | a8c30238bc91f7bb7a5462c608eb27dd74c73db0 (diff) |
ofz#63406 Timeouts with huge fonts
reduce limit further when fuzzing
Change-Id: I66345f78a5375a6415f0b25ba736c41fd27ce8d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158308
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/items/textitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 813f907fb784..cac394c119c4 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -813,7 +813,7 @@ bool SvxFontHeightItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) if (fPoint < 0. || fPoint > 10000.) return false; static bool bFuzzing = utl::ConfigManager::IsFuzzing(); - if (bFuzzing && fPoint > 500) + if (bFuzzing && fPoint > 240) { SAL_WARN("editeng.items", "SvxFontHeightItem ignoring font size of " << fPoint << " for performance"); return false; |