eina: fix eina_file_iterator

Remove false check. When we reach the last line we want to return it.
This check will happen the next time we hit the next function.

SVN revision: 73054
This commit is contained in:
Sebastian Dransfeld 2012-06-29 20:37:33 +00:00
parent 4f0bcd9b29
commit 979ef9217c
1 changed files with 0 additions and 3 deletions

View File

@ -1190,9 +1190,6 @@ _eina_file_map_lines_iterator_next(Eina_Lines_Iterator *it, void **data)
}
it->current.line.index++;
if (it->current.line.end == it->end)
return EINA_FALSE;
eol = _eina_fine_eol(it->current.line.end,
it->boundary,
it->end);