Commit 85fbad45 authored by Måns Rullgård's avatar Måns Rullgård

fft-test: free buffers before exiting

Originally committed as revision 24708 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7e13022a
......@@ -446,5 +446,12 @@ int main(int argc, char **argv)
ff_dct_end(d);
break;
}
av_free(tab);
av_free(tab1);
av_free(tab2);
av_free(tab_ref);
av_free(exptab);
return err;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment