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

Fix crash in FreqWindow when replotting without any tracks

This commit is contained in:
Leland Lucius 2015-05-19 22:17:25 -05:00
parent 0ac4c53bb9
commit f0d1dda3f9

1
src/FreqWindow.cpp Normal file → Executable file
View File

@ -557,6 +557,7 @@ void FreqWindow::GetAudio()
{
if (mData) {
delete [] mData;
mData = NULL;
}
mDataLen = 0;