edbus: Cosmetic change

There's no need to call eina_array_count(). Pop until it finishes.

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>



SVN revision: 79384
This commit is contained in:
José Roberto de Souza 2012-11-16 13:07:26 +00:00 committed by Lucas De Marchi
parent f1db6fcba9
commit e3607b5b35
1 changed files with 3 additions and 4 deletions

View File

@ -995,16 +995,15 @@ fail:
static void
_interface_free(EDBus_Service_Interface *interface)
{
unsigned size, i;
const char *sig;
EDBus_Service_Object *parent;
if (interface == introspectable || interface == properties_iface ||
interface == objmanager)
return;
eina_hash_free(interface->methods);
size = eina_array_count(interface->sign_of_signals);
for (i = 0; i < size; i++)
eina_stringshare_del(eina_array_data_get(interface->sign_of_signals, i));
while ((sig = eina_array_pop(interface->sign_of_signals)))
eina_stringshare_del(sig);
eina_array_free(interface->sign_of_signals);
eina_hash_free(interface->properties);
if (interface->props_changed)