From 519f6850fe931a088544489c42ec5246fe7b327a Mon Sep 17 00:00:00 2001 From: Mike Gorse Date: Wed, 27 Feb 2019 09:14:41 -0600 Subject: Fix atspi_table_cell_get_(row|column)_headers The sanity check was looking for the wrong signature, causing the functions to fail. --- atspi/atspi-table-cell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atspi/atspi-table-cell.c') diff --git a/atspi/atspi-table-cell.c b/atspi/atspi-table-cell.c index 1df1fa90..13203bf6 100644 --- a/atspi/atspi-table-cell.c +++ b/atspi/atspi-table-cell.c @@ -34,7 +34,7 @@ get_object_array_and_unref (DBusMessage *reply) if (!reply) return NULL; - if (strcmp (dbus_message_get_signature (reply), "(so)") != 0) + if (strcmp (dbus_message_get_signature (reply), "a(so)") != 0) { dbus_message_unref (reply); return NULL; -- cgit v1.2.1