mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 15:41:18 +01:00
File name check bypassed if extension is blank
The file name check should happen in all cases.
This commit is contained in:
@@ -720,7 +720,8 @@ bool Exporter::GetFilename()
|
||||
|
||||
mFilename.SetExt(defext);
|
||||
}
|
||||
else if (!mPlugins[mFormat]->CheckFileName(mFilename, mSubFormat))
|
||||
|
||||
if (!mPlugins[mFormat]->CheckFileName(mFilename, mSubFormat))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user