efl_wl - fix warning for possible uninitted list access

could potentially be an issue in one theoretical case. less warnings
is better anyway
This commit is contained in:
Carsten Haitzler 2017-08-02 18:43:35 +09:00
parent 800b877ed7
commit ed947fad81
1 changed files with 1 additions and 1 deletions

View File

@ -2017,7 +2017,7 @@ comp_surface_mouse_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_U
{
Evas_Event_Mouse_Move *ev = event_info;
Comp_Surface *cs = data;
Eina_List *l, *ll;
Eina_List *l = NULL, *ll;
struct wl_resource *res;
int x, y;
Comp_Seat *s;