forked from minhngoc25a/freetype2
* src/cff/cffdrivr.c (cff_get_glyph_name): Protect agains zero
glyph name pointer. Reported by Mikey Anbary <manbary@vizrt.com>.
This commit is contained in:
parent
1d5cb2c4d2
commit
6455780524
|
@ -1,3 +1,8 @@
|
|||
2003-06-24 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/cff/cffdrivr.c (cff_get_glyph_name): Protect agains zero
|
||||
glyph name pointer. Reported by Mikey Anbary <manbary@vizrt.com>.
|
||||
|
||||
2003-06-23 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/tools/glnames.py: Updated to AGL 2.0.
|
||||
|
|
|
@ -255,7 +255,7 @@
|
|||
/* now, lookup the name itself */
|
||||
gname = cff_index_get_sid_string( &font->string_index, sid, psnames );
|
||||
|
||||
if ( buffer_max > 0 )
|
||||
if ( gname && buffer_max > 0 )
|
||||
{
|
||||
FT_UInt len = (FT_UInt)ft_strlen( gname );
|
||||
|
||||
|
|
Loading…
Reference in New Issue