Evas font-engine: Fixed a bug in the glyph search function.

SVN revision: 59776
This commit is contained in:
Tom Hacohen 2011-05-29 09:20:13 +00:00
parent 7074e168e1
commit ca1fc26a0e
2 changed files with 6 additions and 0 deletions

View File

@ -371,3 +371,8 @@
* Add evas_event_thaw_eval() for conveneince of evaluating in state
and callbacks of the pointer after a thaw is complete.
2011-05-29 Tom Hacohen (TAsn)
* Font-engine: Fixed a bug in glyph search causing inconsistent return
values. The found fi should always be NULL if there was no fi found.

View File

@ -534,5 +534,6 @@ evas_common_font_glyph_search(RGBA_Font *fn, RGBA_Font_Int **fi_ret, Eina_Unicod
}
}
}
*fi_ret = NULL;
return 0;
}