Evas textblock Fixed a "may be used uninit" compiler warning.

SVN revision: 58646
This commit is contained in:
Tom Hacohen 2011-04-13 22:40:25 +00:00
parent cd1c9be1f9
commit 90ad3ed743
1 changed files with 2 additions and 0 deletions

View File

@ -6511,6 +6511,8 @@ evas_textblock_cursor_char_delete(Evas_Textblock_Cursor *cur)
index = cur->pos;
if (text[index])
chr = text[index++];
else
chr = 0;
if (chr == 0) return;
ppos = cur->pos;