mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 16:19:43 +02:00
File name check bypassed if extension is blank
The file name check should happen in all cases.
This commit is contained in:
parent
9f076b5179
commit
b7088b5648
@ -720,7 +720,8 @@ bool Exporter::GetFilename()
|
||||
|
||||
mFilename.SetExt(defext);
|
||||
}
|
||||
else if (!mPlugins[mFormat]->CheckFileName(mFilename, mSubFormat))
|
||||
|
||||
if (!mPlugins[mFormat]->CheckFileName(mFilename, mSubFormat))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user