Mercurial > pidgin.yaz
diff libpurple/protocols/bonjour/mdns_avahi.c @ 30846:7c871249318b
Fix some "Dead nested assignment"s and then kill off some useless
variables related to them.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sat, 14 Aug 2010 05:17:38 +0000 |
parents | 755219afed9f |
children | fcb8fad4f029 |
line wrap: on
line diff
--- a/libpurple/protocols/bonjour/mdns_avahi.c Sat Aug 14 03:55:19 2010 +0000 +++ b/libpurple/protocols/bonjour/mdns_avahi.c Sat Aug 14 05:17:38 2010 +0000 @@ -115,7 +115,6 @@ AvahiStringList *l; size_t size; char *key, *value; - int ret; char ip[AVAHI_ADDRESS_STR_MAX]; AvahiBuddyImplData *b_impl; AvahiSvcResolverData *rd; @@ -202,7 +201,7 @@ /* Obtain the parameters from the text_record */ clear_bonjour_buddy_values(bb); for(l = txt; l != NULL; l = l->next) { - if ((ret = avahi_string_list_get_pair(l, &key, &value, &size)) < 0) + if (avahi_string_list_get_pair(l, &key, &value, &size) < 0) continue; set_bonjour_buddy_value(bb, key, value, size); /* TODO: Since we're using the glib allocator, I think we