summaryrefslogtreecommitdiff
path: root/pango
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-15 21:05:48 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-15 21:05:48 +0000
commit5676f3b167815d2a32b40ceeec86cc096e123cbb (patch)
treee6a8e10406fcdac83287450f4406d7ae812d9319 /pango
parentf2a133be392d628cedf90fadf2d217cc73cc1ca5 (diff)
downloadpango-5676f3b167815d2a32b40ceeec86cc096e123cbb.tar.gz
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.)
Diffstat (limited to 'pango')
-rw-r--r--pango/opentype/pango-ot-info.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/pango/opentype/pango-ot-info.c b/pango/opentype/pango-ot-info.c
index 1a4251a3..1c55f2e0 100644
--- a/pango/opentype/pango-ot-info.c
+++ b/pango/opentype/pango-ot-info.c
@@ -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);
}