gdbus: Remove not needed check for NULL DBusPendingCall
authorSzymon Janc <szymon.janc@tieto.com>
Thu, 26 Sep 2013 08:02:35 +0000 (10:02 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 14 Oct 2013 13:06:31 +0000 (06:06 -0700)
It is now checked by g_dbus_send_message_with_reply() so there is no
need to double check that in caller.

gdbus/client.c

index 7bffdad..be8cc29 100644 (file)
@@ -112,11 +112,6 @@ static gboolean modify_match(DBusConnection *conn, const char *member,
                return FALSE;
        }
 
-       if (call == NULL) {
-               dbus_message_unref(msg);
-               return FALSE;
-       }
-
        dbus_pending_call_set_notify(call, modify_match_reply, NULL, NULL);
        dbus_pending_call_unref(call);