From 2d925003a45eb9ef3aabe13dc70dd76a042efed3 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Thu, 26 Sep 2013 10:02:35 +0200 Subject: [PATCH] gdbus: Remove not needed check for NULL DBusPendingCall 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 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gdbus/client.c b/gdbus/client.c index 7bffdad1..be8cc296 100644 --- a/gdbus/client.c +++ b/gdbus/client.c @@ -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);