1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Fix for bug #763 - double delete

This commit is contained in:
lllucius
2014-12-06 19:20:30 +00:00
parent d1a1c7877d
commit c17edd0680

View File

@@ -471,7 +471,6 @@ void FFmpegPresets::DeletePreset(wxString &name)
if (!preset->mPresetName->CmpNoCase(name))
{
mPresets->erase(iter);
delete preset;
break;
}
}