aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2020-06-02 17:14:54 +0200
committerWerner Lemberg <wl@gnu.org>2020-06-02 17:14:54 +0200
commit9e6e903cc4f6f2de86356d551e74eace75927c31 (patch)
tree33066f8f7f6f2e8884b699254f48d122ab8d7eaf /src
parent62fea391fa9993f8c1d206a50080d690178ce518 (diff)
downloadfreetype-9e6e903cc4f6f2de86356d551e74eace75927c31.tar.gz
* src/sfnt/ttcmap.c (tt_face_build_cmaps): Trace number of cmaps.
Diffstat (limited to 'src')
-rw-r--r--src/sfnt/ttcmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sfnt/ttcmap.c b/src/sfnt/ttcmap.c
index 2c34efb5c..76fafa271 100644
--- a/src/sfnt/ttcmap.c
+++ b/src/sfnt/ttcmap.c
@@ -3788,8 +3788,9 @@
p += 2;
num_cmaps = TT_NEXT_USHORT( p );
- limit = table + face->cmap_size;
+ FT_TRACE4(( "tt_face_build_cmaps: %d cmaps\n", num_cmaps ));
+ limit = table + face->cmap_size;
for ( ; num_cmaps > 0 && p + 8 <= limit; num_cmaps-- )
{
FT_CharMapRec charmap;