mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
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:
parent
a3d2521b25
commit
845fb839e8
1 changed files with 2 additions and 2 deletions
|
|
@ -140,6 +140,6 @@ FFT::~FFT()
|
||||||
fftwf_destroy_plan(_plan);
|
fftwf_destroy_plan(_plan);
|
||||||
free(_power_at_bin);
|
free(_power_at_bin);
|
||||||
free(_phase_at_bin);
|
free(_phase_at_bin);
|
||||||
free(_fftOutput);
|
fftwf_free(_fftOutput);
|
||||||
free(_fftInput);
|
fftwf_free(_fftInput);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue