edje: fix a small memory leak during compilation.
authorcedric <cedric>
Fri, 13 Jul 2012 08:33:26 +0000 (08:33 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 13 Jul 2012 08:33:26 +0000 (08:33 +0000)
NOTE: use stringshare all over the place !

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@73796 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/edje_cc_out.c

index d576b82..f5580f9 100644 (file)
@@ -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 ;
           }