avoid setting value that will never be read

SVN revision: 56093
This commit is contained in:
Mike Blumenkrantz 2011-01-14 06:13:09 +00:00
parent 930a112d6f
commit b050405d35
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ evas_event_feed_mouse_move(Evas *e, int x, int y, unsigned int timestamp, const
ev.timestamp = timestamp;
ev.event_flags = EVAS_EVENT_FLAG_NONE;
if (copy) copy = eina_list_free(copy);
if (copy) eina_list_free(copy);
while (outs)
{
Evas_Object *obj;