Index: src/bin/edje_cc_out.c
===================================================================
--- src/bin/edje_cc_out.c	(revision 64164)
+++ src/bin/edje_cc_out.c	(work copy)
@@ -1277,7 +1277,13 @@ data_queue_part_lookup(Edje_Part_Collection *pc, c
         if ((pl->pc == pc) && (pl->dest == dest))
           {
              free(pl->name);
-             pl->name = mem_strdup(name);
+             if (strlen(name) > 0)
+               pl->name = mem_strdup(name);
+             else
+               {
+                  part_lookups = eina_list_remove(part_lookups, pl);
+                  free(pl);
+               }
              return;
           }
      }
