13
0

fix assert-crash caused by not constructing a StopTransport event correctly

This commit is contained in:
Paul Davis 2020-01-28 12:53:47 -07:00
parent b2051d98fd
commit a5dbac0a9c

View File

@ -761,7 +761,7 @@ Session::maybe_stop (samplepos_t limit)
if (synced_to_engine ()) {
_engine.transport_stop ();
} else {
TFSM_EVENT (TransportFSM::StopTransport);
TFSM_EVENT (TransportFSM::StopTransport, false, false);
}
return true;
}