summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-01-20 03:39:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-01-20 03:39:45 +0000
commitcc5e8d41da336535d04169550d09cfe02e9cb065 (patch)
treee3d15d394d74e7a0658e1ea096bb811d0d34cc0a /libs/ardour/route.cc
parent5de9a8f38b0e18317b2b23c5b8698d0d29eba12b (diff)
patch from colinf to make dbl-click on send "box" map its controls to the strip; remove related stub functions from ProcessorBox; fix crash when removing send due to the process lock not being held
git-svn-id: svn://localhost/ardour2/branches/3.0@11274 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 1481a1fd1c..6a7ddde48b 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2565,6 +2565,7 @@ Route::add_send_to_internal_return (InternalSend* send)
void
Route::remove_send_from_internal_return (InternalSend* send)
{
+ Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
Glib::RWLock::ReaderLock rm (_processor_lock);
for (ProcessorList::const_iterator x = _processors.begin(); x != _processors.end(); ++x) {