Evas font-engine: Fix an issue with font_run_end_get.

SVN revision: 59818
This commit is contained in:
Tom Hacohen 2011-05-30 15:18:53 +00:00
parent 876e80c1f8
commit a4b92a0c69
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,7 @@
EAPI int
evas_common_font_query_run_font_end_get(RGBA_Font *fn, RGBA_Font_Int **script_fi, RGBA_Font_Int **cur_fi, Evas_Script_Type script, const Eina_Unicode *text, int run_len)
{
RGBA_Font_Int *fi;
RGBA_Font_Int *fi = NULL;
const Eina_Unicode *run_end = text + run_len;
const Eina_Unicode *itr;
@ -101,6 +101,7 @@ evas_common_font_query_run_font_end_get(RGBA_Font *fn, RGBA_Font_Int **script_fi
* font */
for ( ; itr < run_end ; itr++)
{
tmp_fi = fi;
if (evas_common_get_char_index(fi, *itr) ||
evas_common_font_glyph_search(fn, &tmp_fi, *itr))
{