From ac482d779e9c591adea53929070dbc9294929cf5 Mon Sep 17 00:00:00 2001 From: sfan Date: Wed, 5 Jul 2017 09:39:16 -0700 Subject: [PATCH] Fix av_freep() call --- src/spek-fft.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spek-fft.h b/src/spek-fft.h index 990e482..409263e 100644 --- a/src/spek-fft.h +++ b/src/spek-fft.h @@ -31,7 +31,7 @@ public: virtual ~FFTPlan() { - av_freep(this->input); + av_freep(&this->input); } int get_input_size() const { return this->input_size; }