Fix a potential bug jumping over one element when destroying them.

Didn't find a way to trigger it, but caught it during code review.



SVN revision: 36940
This commit is contained in:
Cedric BAIL 2008-10-21 15:23:24 +00:00
parent 93a280b7d7
commit 7e74651236
1 changed files with 1 additions and 1 deletions

View File

@ -959,7 +959,7 @@ evas_event_feed_key_up(Evas *e, const char *keyname, const char *key, const char
Evas_List *l;
e->delete_grabs--;
for (l = e->grabs; l; l= l->next)
for (l = e->grabs; l;)
{
Evas_Key_Grab *g;