mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
Fix creating sessions using CLI arguments (#9473)
Initialize uninitialized variable. Previously this crashed when setting up the session's time-domain.
This commit is contained in:
parent
b803179768
commit
1b0f248e68
1 changed files with 2 additions and 1 deletions
|
|
@ -69,7 +69,8 @@ using std::string;
|
|||
using std::vector;
|
||||
|
||||
StartupFSM::StartupFSM (EngineControl& amd)
|
||||
: session_existing_sample_rate (0)
|
||||
: session_domain (Config->get_preferred_time_domain())
|
||||
, session_existing_sample_rate (0)
|
||||
, session_engine_hints ("EngineHints")
|
||||
, session_is_new (false)
|
||||
, session_name_edited (false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue