From: cedric Date: Fri, 13 Jul 2012 08:33:26 +0000 (+0000) Subject: edje: fix a small memory leak during compilation. X-Git-Tag: submit/2.0alpha-wayland/20121127.221958~190 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d74948c7c595f30b14e8c36ddc3605edc94201d;p=profile%2Fivi%2Fedje.git edje: fix a small memory leak during compilation. NOTE: use stringshare all over the place ! git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@73796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- 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 ; }