summaryrefslogtreecommitdiff
path: root/libs/pbd/crossthread.posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/crossthread.posix.cc')
-rw-r--r--libs/pbd/crossthread.posix.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/pbd/crossthread.posix.cc b/libs/pbd/crossthread.posix.cc
index 5035bc49da..573671ba99 100644
--- a/libs/pbd/crossthread.posix.cc
+++ b/libs/pbd/crossthread.posix.cc
@@ -29,6 +29,14 @@ CrossThreadChannel::CrossThreadChannel (bool non_blocking)
CrossThreadChannel::~CrossThreadChannel ()
{
+ if (receive_source) {
+ /* this disconnects it from any main context it was attached in
+ in ::attach(), this prevent its callback from being invoked
+ after the destructor has finished.
+ */
+ g_source_destroy (receive_source);
+ }
+
if (receive_channel) {
g_io_channel_unref (receive_channel);
receive_channel = 0;