elm : fix memory leak in entry

SVN revision: 81538
This commit is contained in:
Jihoon Kim 2012-12-21 11:03:10 +00:00
parent 8f56edcf3b
commit 19f51743f4
1 changed files with 4 additions and 1 deletions

View File

@ -1030,7 +1030,10 @@ _item_tags_remove(const char *str)
return NULL;
if (!eina_strbuf_append(buf, str))
return NULL;
{
eina_strbuf_free(buf);
return NULL;
}
while (EINA_TRUE)
{