summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakub Alba <jalba@vewd.com>2020-05-08 10:59:37 +0200
committerWerner Lemberg <wl@gnu.org>2020-05-08 10:59:37 +0200
commita45da2534960586fabea22481bd21ed5ed766022 (patch)
tree21b3f5a38addda5b5b491c2b72f533616878e4f0 /src
parented62b12d6c810c1b046a53ee6b0d25c5f61944a1 (diff)
downloadfreetype2-a45da2534960586fabea22481bd21ed5ed766022.tar.gz
* src/truetype/ttinterp.c (TT_RunIns): Adjust loop counter (#58319).
The font that exceeds the old limit is Icono Regular, version 1.00000.
Diffstat (limited to 'src')
-rw-r--r--src/truetype/ttinterp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c
index 32f676abc..321504097 100644
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -7872,7 +7872,7 @@
FT_MAX( 50,
exc->cvtSize / 10 );
else
- exc->loopcall_counter_max = 300 + 10 * exc->cvtSize;
+ exc->loopcall_counter_max = 300 + 22 * exc->cvtSize;
/* as a protection against an unreasonable number of CVT entries */
/* we assume at most 100 control values per glyph for the counter */