From 569b9cc5a5a9287325b940941d91388016f06535 Mon Sep 17 00:00:00 2001 From: cedric Date: Fri, 13 Jul 2012 08:33:26 +0000 Subject: [PATCH] edje: fix a small memory leak during compilation. NOTE: use stringshare all over the place ! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/edje@73796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/bin/edje_cc_out.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/edje_cc_out.c b/src/bin/edje_cc_out.c index d576b82..f5580f9 100644 --- a/src/bin/edje_cc_out.c +++ b/src/bin/edje_cc_out.c @@ -2007,6 +2007,7 @@ data_queue_image_remove(int *dest, Eina_Bool *set) if (il->dest == dest && il->set == set) { image_lookups = eina_list_remove_list(image_lookups, l); + free(il->name); free(il); return ; } -- 2.7.4