From 89cab5802ac19159e12c1da9eb40cf0f592ad2b9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 10 Oct 2019 21:47:17 -0600 Subject: [PATCH] goto preferred over reentrancy --- gtk2_ardour/startup_fsm.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/startup_fsm.cc b/gtk2_ardour/startup_fsm.cc index 18c622602b..390f0672bb 100644 --- a/gtk2_ardour/startup_fsm.cc +++ b/gtk2_ardour/startup_fsm.cc @@ -128,6 +128,8 @@ StartupFSM::dialog_response_handler (int response, StartupFSM::DialogID dialog_i { const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || (!ARDOUR::Profile->get_mixbus() && new_user)); + restart: + switch (_state) { case NeedPreRelease: switch (dialog_id) { @@ -142,7 +144,12 @@ StartupFSM::dialog_response_handler (int response, StartupFSM::DialogID dialog_i if (NewUserWizard::required()) { show_new_user_wizard (); } else { - dialog_response_handler (RESPONSE_OK, NewUserDialog); + /* act as if we had just finished with the new + user wizard. goto preferred over reentrancy. + */ + dialog_id = NewUserDialog; + response = RESPONSE_OK; + goto restart; } break; }