aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-05-18 16:59:59 -0300
committerMarcel Holtmann <marcel@holtmann.org>2012-05-18 15:05:00 -0700
commit3880dc3198630382ea6e5a7fb5edbf05e176a9f3 (patch)
treec48155d89f6246c0689f05f7a45003a6a8d99bcd
parentbf4250db83a25caf67e533ed6743f648881e4c3b (diff)
downloadmmsd-3880dc3198630382ea6e5a7fb5edbf05e176a9f3.tar.gz
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.
-rw-r--r--gdbus/object.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gdbus/object.c b/gdbus/object.c
index dacbe58..2dd7c0e 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));