raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d9198f10a96c14512f2319e93121681c452896aa
commit d9198f10a96c14512f2319e93121681c452896aa Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Mon Aug 5 15:19:34 2019 +0100 edje cc - fix coverity warning for uninit local var fix CID 1382208 --- src/bin/edje/edje_cc_handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 147db84280..9e4f0427ff 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -14492,7 +14492,7 @@ static void st_collections_group_parts_part_description_map_color(void) { Edje_Map_Color *color; - Edje_Map_Color tmp; + Edje_Map_Color tmp = { 0 }; int i; check_min_arg_count(2); --