From c60babbd8746b81ea8a6b9b3702a4a36cdfc27bf Mon Sep 17 00:00:00 2001 From: Mike Gorse Date: Tue, 9 Jul 2013 12:45:20 -0500 Subject: [PATCH] Fix another crash when we're initialized/shut down repeatedly --- atk-adaptor/bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atk-adaptor/bridge.c b/atk-adaptor/bridge.c index e59c834..5bcd630 100644 --- a/atk-adaptor/bridge.c +++ b/atk-adaptor/bridge.c @@ -106,7 +106,7 @@ get_events_reply (DBusPendingCall *pending, void *user_data) DBusMessage *reply = dbus_pending_call_steal_reply (pending); DBusMessageIter iter, iter_array, iter_struct; - if (!reply) + if (!reply || !spi_global_app_data) goto done; if (strcmp (dbus_message_get_signature (reply), "a(ss)") != 0) -- 2.7.4