diff options
author | Mike Gorse <mgorse@suse.com> | 2016-07-27 11:59:29 -0500 |
---|---|---|
committer | Mike Gorse <mgorse@suse.com> | 2016-07-27 12:00:42 -0500 |
commit | 995a8cd70cad2a1e8d434a59d87e8cebd5817612 (patch) | |
tree | a766797fcea886a2b20cc2a3630db29b0c5a948b /bus | |
parent | d7373e83c38ad65c53018022defbed415abb0ffb (diff) | |
download | at-spi2-core-995a8cd70cad2a1e8d434a59d87e8cebd5817612.tar.gz |
At-spi-bus-launcher: fix uninitialized variable
Diffstat (limited to 'bus')
-rw-r--r-- | bus/at-spi-bus-launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/at-spi-bus-launcher.c b/bus/at-spi-bus-launcher.c index 50e76f46..9a17c50b 100644 --- a/bus/at-spi-bus-launcher.c +++ b/bus/at-spi-bus-launcher.c @@ -225,7 +225,7 @@ is_session_running_ready_cb (GObject *source_object, A11yBusLauncher *app = user_data; GVariant *values; GError *error = NULL; - gboolean is_running; + gboolean is_running = FALSE; proxy = G_DBUS_PROXY (source_object); values = g_dbus_proxy_call_finish (proxy, res, &error); |