Fix a memory corruption issue on some systems

This commit is contained in:
Andy Williams 2014-11-19 22:35:01 +00:00
parent 2387ceac88
commit df1d7def50
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ static void _elm_code_widget_fill_line_token(Evas_Textgrid_Cell *cells, int coun
{
int x;
for (x = start; x <= end && x <= count; x++)
for (x = start; x <= end && x < count; x++)
{
cells[x].fg = type;
}