jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=39452ff8488d2189f93d610064682529b3b88fa7
commit 39452ff8488d2189f93d610064682529b3b88fa7 Author: Subhransu Mohanty <[email protected]> Date: Thu Jun 16 15:26:08 2016 +0900 edje_load : return if we can't decode the vector data. Reviewers: cedric, jpeg Reviewed By: jpeg Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4050 --- src/lib/edje/edje_load.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/edje/edje_load.c b/src/lib/edje/edje_load.c index e6231a9..5ca19e5 100644 --- a/src/lib/edje/edje_load.c +++ b/src/lib/edje/edje_load.c @@ -2453,6 +2453,7 @@ _edje_dupe_vector_data(Edje *ed, int svg_id, double width, double height, if (!vector->vg) { data->vg = NULL; + return; } root = evas_vg_container_add(NULL); --
