summaryrefslogtreecommitdiff
path: root/atspi/atspi-accessible.c
diff options
context:
space:
mode:
authorMike Gorse <mgorse@suse.com>2017-05-08 18:59:40 -0500
committerMike Gorse <mgorse@suse.com>2017-05-08 18:59:40 -0500
commit2347dad97cd903f6b7fed5a56b738e9ecdf80cac (patch)
tree9ceb804bb2fb27e9a35a36c7f6e7a7f5ed651b18 /atspi/atspi-accessible.c
parent8013941fa9c22a9deeef22bb7feb2f2a081c8a2b (diff)
downloadat-spi2-core-2347dad97cd903f6b7fed5a56b738e9ecdf80cac.tar.gz
atspi_accessible_get_parent: move check for NULL AtspiApplication object
Now, if we don't have a cached parent, then we always either return NULL or make a D-Bus call. This might make the code more robust, and hoping that it will fix https://bugzilla.gnome.org/show_bug.cgi?id=767074, though in theory it should make no difference there.
Diffstat (limited to 'atspi/atspi-accessible.c')
-rw-r--r--atspi/atspi-accessible.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/atspi/atspi-accessible.c b/atspi/atspi-accessible.c
index 4547ef7f..b84317f3 100644
--- a/atspi/atspi-accessible.c
+++ b/atspi/atspi-accessible.c
@@ -268,11 +268,12 @@ atspi_accessible_get_parent (AtspiAccessible *obj, GError **error)
{
g_return_val_if_fail (obj != NULL, NULL);
- if (obj->parent.app &&
- !_atspi_accessible_test_cache (obj, ATSPI_CACHE_PARENT))
+ if (!_atspi_accessible_test_cache (obj, ATSPI_CACHE_PARENT))
{
DBusMessage *message, *reply;
DBusMessageIter iter, iter_variant;
+ if (!obj->parent.app)
+ return NULL;
message = dbus_message_new_method_call (obj->parent.app->bus_name,
obj->parent.path,
DBUS_INTERFACE_PROPERTIES, "Get");