summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@redhat.com>2016-03-08 14:28:24 -0600
committerJonathon Jongsma <jjongsma@redhat.com>2016-03-11 09:52:46 -0600
commit9c8f8982c1b51adf98785d05323c6ab32369a682 (patch)
tree032b95b2b483f78b9231c892f5469b3ef2c66a84
parent3e5004dd5758da27b6f7dab3808769303c30044e (diff)
downloadspice-gtk-9c8f8982c1b51adf98785d05323c6ab32369a682.tar.gz
spice-gtk-9c8f8982c1b51adf98785d05323c6ab32369a682.tar.xz
spice-gtk-9c8f8982c1b51adf98785d05323c6ab32369a682.zip
usb-acl-helper: Avoid deadlock when cancelled
cancelled_cb() (which is triggered when the GCancellable's "cancelled" signal is emitted) called spice_usb_acl_helper_close_acl(), which calls spice_usb_acl_helper_cleanup(), which in turn calls g_cancellable_disconnect(). Calling g_cancellable_disconnect() from within a "cancelled" handler results in a dealock, as mentioned in the documentation. Instead of closing the acl here, simply cancel the task here. The cleanup() call will happen when the SpiceUsbAclHelper object is destroyed.
-rw-r--r--src/usb-acl-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usb-acl-helper.c b/src/usb-acl-helper.c
index 4ed57b9..9a08fea 100644
--- a/src/usb-acl-helper.c
+++ b/src/usb-acl-helper.c
@@ -162,7 +162,7 @@ static void cancelled_cb(GCancellable *cancellable, gpointer user_data)
{
SpiceUsbAclHelper *self = SPICE_USB_ACL_HELPER(user_data);
- spice_usb_acl_helper_close_acl(self);
+ spice_usb_acl_helper_cancel(self);
}
static void helper_child_watch_cb(GPid pid, gint status, gpointer user_data)