edje: don't use strlen() == 0

SVN revision: 66442
This commit is contained in:
Sebastian Dransfeld 2011-12-21 20:09:23 +00:00
parent e94227da15
commit 896c628f82
1 changed files with 1 additions and 1 deletions

View File

@ -1376,7 +1376,7 @@ data_queue_group_lookup(const char *name, Edje_Part *part)
{
Group_Lookup *gl;
if (!name || strlen(name) == 0) return ;
if (!name || !name[0]) return;
gl = mem_alloc(SZ(Group_Lookup));
group_lookups = eina_list_append(group_lookups, gl);