mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 12:46:32 +01:00
Fix crash when using exclusive Mixbus listen
This commit is contained in:
parent
830f76bdce
commit
b174326228
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ Session::prepare_momentary_solo (SoloMuteRelease* smr, bool exclusive, boost::sh
|
||||||
|
|
||||||
for (RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) {
|
for (RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) {
|
||||||
#ifdef MIXBUS
|
#ifdef MIXBUS
|
||||||
if ((0 == route->mixbus()) != (0 == (*i)->mixbus ())) {
|
if (route && (0 == route->mixbus()) != (0 == (*i)->mixbus ())) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue