[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Devel] bug in cffcmap.c
From: |
Werner LEMBERG |
Subject: |
Re: [Devel] bug in cffcmap.c |
Date: |
Wed, 25 Feb 2004 22:35:40 +0100 (CET) |
> I tracked the problem down to line 157 of cffcmap.c (version 2.1.4)
> in the function cff_cmap_unicode_init:
>
> 157: count = (FT_UInt)face->root.num_glyphs;
>
> should be
>
> 157: count = (FT_UInt)cff->num_glyphs;
Applied, thanks.
> P.S. When searching for this bug, I tried several newer versions and
> found that parsing/loading of some type1 fonts had been broken
> (control never returns), but that's another bug report.
Please test the current CVS; I've fixed many such bugs recently but it
is possible that there are still problems.
Werner