* src/cff/cffdrivr.c (cff_get_name_index): Protect against NULL

pointer.
This commit is contained in:
Werner Lemberg 2007-02-07 08:31:01 +00:00
parent f223df6e79
commit 8f47453b6a
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-02-07 Tom Parker <palfrey@tevp.net>
* src/cff/cffdrivr.c (cff_get_name_index): Protect against NULL
pointer.
2007-02-05 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
* include/freetype/ftmac.h (FT_DEPRECATED_ATTRIBUTE):

View File

@ -270,6 +270,9 @@
else
name = (FT_String *)psnames->adobe_std_strings( sid );
if ( !name )
continue;
result = ft_strcmp( glyph_name, name );
if ( sid > 390 )