1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

Bug1511, partial: fix crash using Quit from Mac tool dock, but...

... when multiple unsaved projects are open, there is still a prompt to save
only one of them.  I don't yet know why.
This commit is contained in:
Paul Licameli 2016-10-03 11:34:30 -04:00
parent 37a0cd3af6
commit 412d651e6e

View File

@ -369,7 +369,7 @@ Meter::~Meter()
// LLL: This prevents a crash during termination if monitoring
// is active.
if (gAudioIO->IsMonitoring())
if (gAudioIO && gAudioIO->IsMonitoring())
gAudioIO->StopStream();
}