raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4eb5b2d3e86ba36831b178028c7a3f2787eea901
commit 4eb5b2d3e86ba36831b178028c7a3f2787eea901 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Feb 13 15:28:47 2018 +0900 efl ui win - if job runs after destruction of evas so dont flush pending --- src/lib/elementary/efl_ui_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index aa64baa423..4ccea98dc0 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -4750,7 +4750,7 @@ static Eina_Value _win_finalize_job_cb(void *data, const Eina_Value value) { Evas *eo_e = evas_object_evas_get(data); - evas_render_pending_objects_flush(eo_e); + if (eo_e) evas_render_pending_objects_flush(eo_e); return value; } --
