Commit : Memory Leaks Plugged#

This commit is contained in:
Rafat Hussain
2016-03-08 06:40:13 +05:30
parent 1c0644364a
commit 4075ae5bc8
4 changed files with 56 additions and 31 deletions

View File

@@ -204,5 +204,7 @@ void conv_fft(const conv_object obj,fft_type *inp1,fft_type *inp2,fft_type *oup)
void free_conv(conv_object object) {
free_real_fft(object->fobj);
free_real_fft(object->iobj);
free(object);
}