summaryrefslogtreecommitdiff
path: root/libs/pbd/controllable.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-31 19:49:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-31 19:49:22 +0000
commit8ae20c0c4d1353afe2a42f17eb14270882a89174 (patch)
treeb1edbdd71ee33552e85c36b09174f1092da6c38f /libs/pbd/controllable.cc
parentc6d51242691b593d3037784c993d101409c32c13 (diff)
stop metering thread as we disconnect a session from audioengine; explicitly drop connections early in ~Route so that we don't still have signals being handled while we destruct; fix up some valgrind warnings
git-svn-id: svn://localhost/ardour2/branches/3.0@6425 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/controllable.cc')
-rw-r--r--libs/pbd/controllable.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/pbd/controllable.cc b/libs/pbd/controllable.cc
index d5b81a73ed..38780bddbe 100644
--- a/libs/pbd/controllable.cc
+++ b/libs/pbd/controllable.cc
@@ -40,6 +40,7 @@ PBD::ScopedConnectionList registry_connections;
Controllable::Controllable (const string& name, Flag f)
: _name (name)
, _flags (f)
+ , _touching (false)
{
add (*this);
}