summaryrefslogtreecommitdiffstats
path: root/gdbus
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-05-20 02:07:36 -0300
committerMarcel Holtmann <marcel@holtmann.org>2012-05-20 02:47:57 -0700
commit4fa967e7e279478db62cac03b2fb606ad7cff5c4 (patch)
tree65b2d6305e647147fa57addaf80c828229f6dc94 /gdbus
parente400426267975ce3f8155e71b05bffccfd29826f (diff)
downloadofono-4fa967e7e279478db62cac03b2fb606ad7cff5c4.tar.bz2
gdbus: do not check signature twice
Message signature is already checked in generic_message(), so there's no need to check again in the callback.
Diffstat (limited to 'gdbus')
-rw-r--r--gdbus/object.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gdbus/object.c b/gdbus/object.c
index dacbe587..2dd7c0e2 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -174,11 +174,6 @@ static DBusMessage *introspect(DBusConnection *connection,
struct generic_data *data = user_data;
DBusMessage *reply;
- if (!dbus_message_has_signature(message, DBUS_TYPE_INVALID_AS_STRING)) {
- error("Unexpected signature to introspect call");
- return NULL;
- }
-
if (data->introspect == NULL)
generate_introspection_xml(connection, data,
dbus_message_get_path(message));