bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=cd13b40f668bfbb86e9f7e9aec0ff86888ea43ca
commit cd13b40f668bfbb86e9f7e9aec0ff86888ea43ca Author: Marcel Hollerbach <[email protected]> Date: Tue Mar 24 13:54:37 2020 +0100 edje_cc: free ecore_evas we have initialized it, we should shutdown it. This was we are not getting random vtable allocation leak reports in the asan job anymore. Reviewed-by: Mike Blumenkrantz <[email protected]> Reviewed-by: Chris Michael <[email protected]> Reviewed-by: Stefan Schmidt <[email protected]> Differential Revision: https://phab.enlightenment.org/D11572 --- src/bin/edje/edje_cc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/edje/edje_cc.c b/src/bin/edje/edje_cc.c index 07c616fc8f..dff3fd7a3e 100644 --- a/src/bin/edje/edje_cc.c +++ b/src/bin/edje/edje_cc.c @@ -450,6 +450,7 @@ main(int argc, char **argv) eina_prefix_free(pfx); pfx = NULL; + ecore_evas_shutdown(); edje_shutdown(); eina_log_domain_unregister(_edje_cc_log_dom); eina_shutdown(); --
