edje: fix a small memory leak during compilation.

NOTE: use stringshare all over the place !


SVN revision: 73796
This commit is contained in:
Cedric BAIL 2012-07-13 08:33:26 +00:00
parent ea0c836338
commit 7835bdd259
1 changed files with 1 additions and 0 deletions

View 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 ;
}