Fix various crashes on session close.

git-svn-id: svn://localhost/ardour2/branches/3.0@6186 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2009-11-26 13:26:30 +00:00
parent 966e09677d
commit b3d86acf38
3 changed files with 16 additions and 8 deletions

View File

@@ -163,8 +163,14 @@ Route::~Route ()
{
Metering::disconnect (_meter_connection);
clear_processors (PreFader);
clear_processors (PostFader);
/* don't use clear_processors here, as it depends on the session which may
be half-destroyed by now */
Glib::RWLock::WriterLock lm (_processor_lock);
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
(*i)->drop_references ();
}
_processors.clear ();
}
void