1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-23 01:35:07 +02:00

avidec : Free codec context before initializing the chained DV demuxer.

Originally committed as revision 24279 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jai Menon 2010-07-17 05:08:01 +00:00
parent 57fe80fe88
commit a58e6ceae0

View File

@ -397,6 +397,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
ast = s->streams[0]->priv_data;
av_freep(&s->streams[0]->codec->extradata);
av_freep(&s->streams[0]->codec);
av_freep(&s->streams[0]);
s->nb_streams = 0;
if (CONFIG_DV_DEMUXER) {