Skip to content

Commit ac482d7

Browse files
sfan5alexkay
authored andcommittedJul 5, 2017
Fix av_freep() call
1 parent 766a36a commit ac482d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/spek-fft.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class FFTPlan
3131

3232
virtual ~FFTPlan()
3333
{
34-
av_freep(this->input);
34+
av_freep(&this->input);
3535
}
3636

3737
int get_input_size() const { return this->input_size; }

0 commit comments

Comments
 (0)
Please sign in to comment.