From d815c491eb105c49a7dbcb29c355ca9aaa8d92c4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 19 Aug 2010 12:49:06 +0200 Subject: [PATCH] Add missing D-Bus return in up_qos_cancel_request() Signed-off-by: Martin Pitt --- src/up-qos.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/up-qos.c b/src/up-qos.c index 70f1690..f08c439 100644 --- a/src/up-qos.c +++ b/src/up-qos.c @@ -395,6 +395,8 @@ up_qos_cancel_request (UpQos *qos, guint cookie, DBusGMethodInvocation *context) /* TODO: if persistent remove from datadase */ g_signal_emit (qos, signals [REQUESTS_CHANGED], 0); + + dbus_g_method_return (context, NULL); out: if (subject != NULL) g_object_unref (subject);