295f362
diff -up dbus-glib-0.73/dbus/dbus-gproxy.c.foo dbus-glib-0.73/dbus/dbus-gproxy.c
295f362
--- dbus-glib-0.73/dbus/dbus-gproxy.c.foo	2007-02-08 20:59:39.000000000 -0500
295f362
+++ dbus-glib-0.73/dbus/dbus-gproxy.c	2007-09-24 14:54:39.000000000 -0400
295f362
@@ -1232,8 +1235,15 @@ dbus_g_proxy_manager_filter (DBusConnect
295f362
 						  dbus_message_get_interface (message));
295f362
 
295f362
 	      owner_list = g_hash_table_lookup (manager->proxy_lists, tri);
295f362
-	      if (owner_list != NULL)
295f362
-		full_list = g_slist_concat (full_list, g_slist_copy (owner_list->proxies));
295f362
+	      if (owner_list != NULL) {
295f362
+	        GSList *elt;
295f362
+
295f362
+	        /* Ignore duplicates when adding to full_list */
295f362
+	        for (elt = owner_list->proxies; elt; elt = g_slist_next (elt)) {
295f362
+	          if (!g_slist_find (full_list, elt->data))
295f362
+	            full_list = g_slist_append (full_list, elt->data);
295f362
+	        }
295f362
+	      }
295f362
 	      g_free (tri);
295f362
 	    }
295f362
 	}
295f362