From 000f353f5725b309c2a0080eff445ba18ce23511 Mon Sep 17 00:00:00 2001 From: lllucius Date: Mon, 5 Jan 2015 06:57:16 +0000 Subject: [PATCH] Fix for problem caused by r5527, circa Sep. 2006 The problem was that if the user chose to quit Audacity when the auto recovery dialog was displayed, Audacity would crash because the command line was still parsed and any filenames listed on the command line would still be opened. But, that would failed because "quit" processing had already been done. Anyway, a simple one line fix. --- src/AudacityApp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudacityApp.cpp b/src/AudacityApp.cpp index fe26db98f..9a7ba750a 100644 --- a/src/AudacityApp.cpp +++ b/src/AudacityApp.cpp @@ -1329,6 +1329,7 @@ void AudacityApp::FinishInits() // Important: Prevent deleting any temporary files! DirManager::SetDontDeleteTempFiles(); QuitAudacity(true); + return; } //