raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=4d9966308534db4c873b03798ebe2af4f87e42f2
commit 4d9966308534db4c873b03798ebe2af4f87e42f2 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Apr 10 17:02:52 2014 +0900 fix new access of uninitted memory isue on eo move --- src/lib/elm_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_video.c b/src/lib/elm_video.c index 17e0cfc..1851c16 100644 --- a/src/lib/elm_video.c +++ b/src/lib/elm_video.c @@ -91,7 +91,7 @@ _elm_video_elm_layout_sizing_eval(Eo *obj, Elm_Video_Data *sd) ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd); Evas_Coord minw = -1, minh = -1; - Evas_Coord w, h; + Evas_Coord w = 0, h = 0; evas_object_size_hint_request_get(sd->emotion, &minw, &minh); evas_object_size_hint_aspect_set --
