From 596814f9781772050c65bdd8add27445bc8374a4 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 3 Jul 2012 09:51:44 +0000 Subject: [PATCH] jvdec: fix memleak of jv->frames Signed-off-by: Paul B Mahol --- libavformat/jvdec.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/libavformat/jvdec.c b/libavformat/jvdec.c index 504be089c7..e7594b9260 100644 --- a/libavformat/jvdec.c +++ b/libavformat/jvdec.c @@ -216,6 +216,15 @@ static int read_seek(AVFormatContext *s, int stream_index, return 0; } +static int read_close(AVFormatContext *s) +{ + JVDemuxContext *jv = s->priv_data; + + av_freep(&jv->frames); + + return 0; +} + AVInputFormat ff_jv_demuxer = { .name = "jv", .long_name = NULL_IF_CONFIG_SMALL("Bitmap Brothers JV"), @@ -224,4 +233,5 @@ AVInputFormat ff_jv_demuxer = { .read_header = read_header, .read_packet = read_packet, .read_seek = read_seek, + .read_close = read_close, };