Evas textblock: Fix clang error.

Shouldn't ever happen, but whatever.
http://dev.enlightenment.fr/~discomfitor/evas-2011-11-08/report-Va2XPK.html#EndPath

SVN revision: 64978
This commit is contained in:
Tom Hacohen 2011-11-09 07:51:14 +00:00
parent 4b5e727023
commit 2bb72a2965
1 changed files with 3 additions and 0 deletions

View File

@ -8238,6 +8238,8 @@ _evas_textblock_cursor_range_in_line_geometry_get(
cur = (cur1) ? cur1 : cur2; cur = (cur1) ? cur1 : cur2;
if (!cur) return NULL;
/* Find the first and last items */ /* Find the first and last items */
it1 = it2 = NULL; it1 = it2 = NULL;
start = end = 0; start = end = 0;
@ -8452,6 +8454,7 @@ _evas_textblock_cursor_range_in_line_geometry_get(
} }
return rects; return rects;
} }
EAPI Eina_List * EAPI Eina_List *
evas_textblock_cursor_range_geometry_get(const Evas_Textblock_Cursor *cur1, const Evas_Textblock_Cursor *cur2) evas_textblock_cursor_range_geometry_get(const Evas_Textblock_Cursor *cur1, const Evas_Textblock_Cursor *cur2)
{ {