diff options
author | Anton Khirnov <anton@khirnov.net> | 2017-09-01 02:16:33 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-09-01 02:16:33 -0300 |
commit | 78a7af823b7c2a1e3184e6680f2b49bf67101e5c (patch) | |
tree | 07ec2c75848eb926ace16830742be70e61f8282c /libavformat/swfdec.c | |
parent | b12e4d3bb8df994f042ff1216fb8de2b967aab9e (diff) | |
download | ffmpeg-78a7af823b7c2a1e3184e6680f2b49bf67101e5c.tar.gz |
Use the new AVIOContext destructor.
(cherry picked from commit 6f554521afdf7ab4edbfaa9536660a1dca946b19)
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/swfdec.c')
-rw-r--r-- | libavformat/swfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c index b91560c56c..57b619fb20 100644 --- a/libavformat/swfdec.c +++ b/libavformat/swfdec.c @@ -531,7 +531,7 @@ static av_cold int swf_read_close(AVFormatContext *avctx) inflateEnd(&s->zstream); av_freep(&s->zbuf_in); av_freep(&s->zbuf_out); - av_freep(&s->zpb); + avio_context_free(&s->zpb); return 0; } #endif |