From 8b248cc6c6565ec8ef6e3f39ca1569a65f80c1fa Mon Sep 17 00:00:00 2001 From: Daniel Zaoui Date: Mon, 6 Oct 2014 11:29:05 +0300 Subject: [PATCH] List: fix annoying Valgrind unitialized value. --- src/lib/elm_list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_list.c b/src/lib/elm_list.c index 795375b..25ed9c7 100644 --- a/src/lib/elm_list.c +++ b/src/lib/elm_list.c @@ -671,8 +671,8 @@ EOLIAN static void _elm_list_elm_layout_sizing_eval(Eo *obj, Elm_List_Data *sd) { Evas_Coord vw = 0, vh = 0; - Evas_Coord minw, minh, maxw, maxh, w, h, vmw, vmh; - double xw, yw; + Evas_Coord minw = 0, minh = 0, maxw = 0, maxh = 0, w = 0, h = 0, vmw = 0, vmh = 0; + double xw = 0.0, yw = 0.0; ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd); -- 2.7.4