13
0

Fix a crash when we display the 'Plugin Analysis' window (in a generic plugin GUI window) and then close the GUI

This commit is contained in:
John Emmas 2016-08-28 10:23:57 +01:00
parent a3d2521b25
commit 845fb839e8

View File

@ -140,6 +140,6 @@ FFT::~FFT()
fftwf_destroy_plan(_plan);
free(_power_at_bin);
free(_phase_at_bin);
free(_fftOutput);
free(_fftInput);
fftwf_free(_fftOutput);
fftwf_free(_fftInput);
}