- Make sure we set the current pointer. If we don't and call _index_goto()

we'll get a segv


SVN revision: 32769
This commit is contained in:
Dan Sinclair 2007-11-19 04:15:26 +00:00 committed by Dan Sinclair
parent 2493d489c4
commit 2a9de292d8
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ ecore_list_append_list(Ecore_List *list, Ecore_List *append)
if (ecore_list_empty_is(list))
{
list->first = append->first;
list->current = NULL;
list->current = list->first;
list->last = append->last;
list->nodes = append->nodes;
}