diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-07-06 16:49:36 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-07-06 16:49:36 +0000 |
commit | 4f76697b3e251e6fc24ef55349a69670c0193657 (patch) | |
tree | fd8728c80a58f41979d14f5ede9f4f39742ee57b /libavcodec/indeo3.c | |
parent | 16c831851384ab59e73579fdd9913fbff3c0284a (diff) | |
download | ffmpeg-4f76697b3e251e6fc24ef55349a69670c0193657.tar.gz |
Change av_free to av_freep
Originally committed as revision 19360 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 9c14e81a55..63d74b9bd0 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -143,9 +143,9 @@ static av_cold int iv_alloc_frames(Indeo3DecodeContext *s) static av_cold void iv_free_func(Indeo3DecodeContext *s) { - av_free(s->buf); - av_free(s->ModPred); - av_free(s->corrector_type); + av_freep(&s->buf); + av_freep(&s->ModPred); + av_freep(&s->corrector_type); } struct ustr { |