Don't leak pending calls
authorWilliam Jon McCann <jmccann@redhat.com>
Fri, 14 Sep 2012 21:29:10 +0000 (17:29 -0400)
committerMike Gorse <mgorse@suse.com>
Mon, 17 Sep 2012 23:18:31 +0000 (18:18 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=684077

atk-adaptor/bridge.c

index a66f0e2..99a6a36 100644 (file)
@@ -291,6 +291,9 @@ register_application (SpiBridge * app)
     if (!dbus_connection_send_with_reply (app->bus, message, &pending, -1)
         || !pending)
     {
+        if (pending)
+          dbus_pending_call_unref (pending);
+
         dbus_message_unref (message);
         return FALSE;
     }