From 8b853b5e6a4b0bba2b93ea411d8468b3db83eda5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Stawicki?= Date: Fri, 16 Mar 2018 17:32:19 +0100 Subject: [PATCH] [prevent][38655] Fix for unchecked return value Change-Id: I117d7d12d0c2aa9f0ab32c239341ed2d91a5c14a --- atspi/atspi-misc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/atspi/atspi-misc.c b/atspi/atspi-misc.c index 65003df..678b566 100644 --- a/atspi/atspi-misc.c +++ b/atspi/atspi-misc.c @@ -229,6 +229,7 @@ get_application (const char *bus_name) char *bus_name_dup; DBusMessage *message; DBusPendingCall *pending = NULL; + dbus_bool_t result; if (!app_hash) { @@ -249,9 +250,9 @@ get_application (const char *bus_name) message = dbus_message_new_method_call (bus_name, atspi_path_root, atspi_interface_application, "GetApplicationBusAddress"); - dbus_connection_send_with_reply (app->bus, message, &pending, 2000); + result = dbus_connection_send_with_reply (app->bus, message, &pending, 2000); dbus_message_unref (message); - if (!pending) + if (!result || !pending) { g_hash_table_remove (app_hash, bus_name_dup); return NULL; -- 2.7.4