From: Tanu Kaskinen Date: Sun, 1 Jan 2012 17:44:26 +0000 (+0200) Subject: dbus: Give NULL as the error parameter to dbus_bus_remove_match(). X-Git-Tag: v1.99.1~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e4eef2179f93fa99c110da65b497fec5996df2d;p=platform%2Fupstream%2Fpulseaudio.git dbus: Give NULL as the error parameter to dbus_bus_remove_match(). We didn't do anything anyway in case of failures. When we give NULL as the error, dbus_bus_remove_match() can act asynchronously, so it becomes faster. Also, the bus daemon can avoid sending any replies, which reduces the amount of traffic. --- diff --git a/src/modules/bluetooth/module-bluetooth-proximity.c b/src/modules/bluetooth/module-bluetooth-proximity.c index 8c3a5b9f2..7560f5a3e 100644 --- a/src/modules/bluetooth/module-bluetooth-proximity.c +++ b/src/modules/bluetooth/module-bluetooth-proximity.c @@ -344,7 +344,7 @@ static int add_matches(struct userdata *u, pa_bool_t add) { goto finish; } } else - dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter1, &e); + dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter1, NULL); if (add) { @@ -352,11 +352,11 @@ static int add_matches(struct userdata *u, pa_bool_t add) { if (dbus_error_is_set(&e)) { pa_log("dbus_bus_add_match(%s) failed: %s", filter2, e.message); - dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter2, &e); + dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter2, NULL); goto finish; } } else - dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter2, &e); + dbus_bus_remove_match(pa_dbus_connection_get(u->dbus_connection), filter2, NULL); if (add) { pa_assert_se(dbus_connection_add_filter(pa_dbus_connection_get(u->dbus_connection), filter_func, u, NULL)); diff --git a/src/pulsecore/dbus-util.c b/src/pulsecore/dbus-util.c index 3daf90f17..adffa88cb 100644 --- a/src/pulsecore/dbus-util.c +++ b/src/pulsecore/dbus-util.c @@ -367,13 +367,8 @@ fail: va_end(ap); va_start(ap, error); for (; k > 0; k--) { - DBusError e; - pa_assert_se(t = va_arg(ap, const char*)); - - dbus_error_init(&e); - dbus_bus_remove_match(c, t, &e); - dbus_error_free(&e); + dbus_bus_remove_match(c, t, NULL); } va_end(ap); @@ -383,17 +378,12 @@ fail: void pa_dbus_remove_matches(DBusConnection *c, ...) { const char *t; va_list ap; - DBusError error; pa_assert(c); - dbus_error_init(&error); - va_start(ap, c); - while ((t = va_arg(ap, const char*))) { - dbus_bus_remove_match(c, t, &error); - dbus_error_free(&error); - } + while ((t = va_arg(ap, const char*))) + dbus_bus_remove_match(c, t, NULL); va_end(ap); }