Fix a crash when we display the 'Plugin Analysis' window (in a generic plugin GUI...
authorJohn Emmas <johne53@tiscali.co.uk>
Sun, 28 Aug 2016 09:23:57 +0000 (10:23 +0100)
committerJohn Emmas <johne53@tiscali.co.uk>
Sun, 28 Aug 2016 09:23:57 +0000 (10:23 +0100)
gtk2_ardour/fft.cc

index a4e34bf2aafedbb56116c372772ef017c2320506..ec9af2fd3e086faf0fa90b7e605cc27faaf614d8 100644 (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);
 }