raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ed947fad81f6409f41b7d5a903b6d4b21ac34479
commit ed947fad81f6409f41b7d5a903b6d4b21ac34479 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Aug 2 18:43:35 2017 +0900 efl_wl - fix warning for possible uninitted list access could potentially be an issue in one theoretical case. less warnings is better anyway --- src/lib/efl_wl/efl_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/efl_wl/efl_wl.c b/src/lib/efl_wl/efl_wl.c index 808daccb9b..691ae69beb 100644 --- a/src/lib/efl_wl/efl_wl.c +++ b/src/lib/efl_wl/efl_wl.c @@ -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; --
