From e59e8f6ab9f9763379ff1dfa957625a269542eee Mon Sep 17 00:00:00 2001 From: John Emmas Date: Thu, 13 Nov 2014 12:13:16 +0000 Subject: [PATCH] Make sure we can't execute 'ARDOUR::Route::meter()' unless a ReaderLock was successfully obtained --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index f78cd1e2f1..0ecbe29995 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -3730,7 +3730,7 @@ Route::set_active (bool yn, void* src) void Route::meter () { - Glib::Threads::RWLock::ReaderLock rm (_processor_lock, Glib::Threads::TRY_LOCK); + Glib::Threads::RWLock::ReaderLock rm (_processor_lock); assert (_meter);