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

Overwriting export via save-compressed or chain commands: safety...

... of original file contents in case of failure.
This commit is contained in:
Paul Licameli 2017-10-17 06:46:29 -04:00
parent cbf4c11e26
commit 49174461d1

View File

@ -395,7 +395,7 @@ bool Exporter::Process(AudacityProject *project, unsigned numChannels,
{
mFormat = i;
mSubFormat = j;
return ExportTracks();
return CheckFilename() && ExportTracks();
}
}
}