mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
Fix deadlock on closing a send IO dialogue.
git-svn-id: svn://localhost/ardour2/branches/3.0@8240 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
86ac707573
commit
1f0ac78bc4
2 changed files with 2 additions and 2 deletions
|
|
@ -247,6 +247,7 @@ Processor::set_state (const XMLNode& node, int version)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/** Caller must hold process lock */
|
||||
bool
|
||||
Processor::configure_io (ChanCount in, ChanCount out)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
|
|||
return true;
|
||||
}
|
||||
|
||||
/** Caller must not hold process lock */
|
||||
/** Caller must hold process lock */
|
||||
bool
|
||||
Send::configure_io (ChanCount in, ChanCount out)
|
||||
{
|
||||
|
|
@ -226,7 +226,6 @@ Send::configure_io (ChanCount in, ChanCount out)
|
|||
}
|
||||
|
||||
if (_output) {
|
||||
Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock());
|
||||
_output->ensure_io (out, false, 0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue