Commit 961028d9 authored by Salah-Eddin Shaban's avatar Salah-Eddin Shaban Committed by Jean-Baptiste Kempf

freetype: remove unnecessary assert()

This assert() will fail when zero-width spaces are encountered and ignored.
It would also fail when GetGlyph() returns an error.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent f7da3d84
...@@ -1520,7 +1520,6 @@ static int ProcessLines( filter_t *p_filter, ...@@ -1520,7 +1520,6 @@ static int ProcessLines( filter_t *p_filter,
break; break;
} }
assert( p_line->i_character_count == i_index - i_start);
p_line->p_character[p_line->i_character_count++] = (line_character_t){ p_line->p_character[p_line->i_character_count++] = (line_character_t){
.p_glyph = (FT_BitmapGlyph)glyph, .p_glyph = (FT_BitmapGlyph)glyph,
.p_outline = (FT_BitmapGlyph)outline, .p_outline = (FT_BitmapGlyph)outline,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment