Add missing free

This commit is contained in:
Mike Walters
2015-06-25 12:27:52 +01:00
parent 53b8dabe73
commit cb79ef1131

View File

@@ -40,6 +40,7 @@ InputSource::~InputSource() {
fftwf_free(m_fftw_in);
fftwf_free(m_fftw_out);
free(m_output_cache);
munmap(m_data, m_file_size);
fclose(m_file);
}