vcl/source/gdi/impglyphitem.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 3d3242ef3a6f111d6220c60d5c1b968c7f46fc5f Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Sun Feb 11 21:11:50 2024 +0000 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Sun Feb 11 22:34:48 2024 +0100 ofz#66222 Timeout, raise glyph cache size for fuzzing Change-Id: I78517eaf366e855f6a10676e90662560b27a27fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163233 Tested-by: Caolán McNamara <caolan.mcnam...@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/vcl/source/gdi/impglyphitem.cxx b/vcl/source/gdi/impglyphitem.cxx index d888d823494c..301b2b9db824 100644 --- a/vcl/source/gdi/impglyphitem.cxx +++ b/vcl/source/gdi/impglyphitem.cxx @@ -236,7 +236,7 @@ SalLayoutGlyphsCache* SalLayoutGlyphsCache::self() { static vcl::DeleteOnDeinit<SalLayoutGlyphsCache> cache( !comphelper::IsFuzzing() ? officecfg::Office::Common::Cache::Font::GlyphsCacheSize::get() - : 20000); + : 20000000); return cache.get(); }