Fix infinite loop in the case where the charmap contains a character >

Tue Apr 15 05:00:39 2003  Owen Taylor  <otaylor@redhat.com>

        * pango/opentype/pango-ot-info.c (synthesize_class_def):
        Fix infinite loop in the case where the charmap contains
        a character > 65535. (#106550, Morten Welinder.)
This commit is contained in:
Owen Taylor 2003-04-15 21:05:53 +00:00 committed by Owen Taylor
parent 312e1c1cf9
commit 462bd0be60
1 changed files with 7 additions and 7 deletions

View File

@ -202,13 +202,13 @@ synthesize_class_def (PangoOTInfo *info)
{
GlyphInfo glyph_info;
if (glyph > 65535)
continue;
glyph_info.glyph = glyph;
glyph_info.class = get_glyph_class (charcode);
g_array_append_val (glyph_infos, glyph_info);
if (glyph <= 65535)
{
glyph_info.glyph = glyph;
glyph_info.class = get_glyph_class (charcode);
g_array_append_val (glyph_infos, glyph_info);
}
charcode = FT_Get_Next_Char (info->face, charcode, &glyph);
}