]> git.sesse.net Git - ffmpeg/commitdiff
movdec: Free the previous extradata
authorMartin Storsjö <martin@martin.st>
Tue, 5 Oct 2010 21:36:30 +0000 (21:36 +0000)
committerMartin Storsjö <martin@martin.st>
Tue, 5 Oct 2010 21:36:30 +0000 (21:36 +0000)
If multiple stsd atoms are parsed for the same stream, the old
extradata would be leaked.

Originally committed as revision 25360 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mov.c

index 8c65f4bf7308040fd61e9203e168f1576bad2aca..4eea7956378c21ba3815109cd60b75008676db5a 100644 (file)
@@ -528,6 +528,7 @@ int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom)
             dprintf(fc, "Specific MPEG4 header len=%d\n", len);
             if((uint64_t)len > (1<<30))
                 return -1;
+            av_free(st->codec->extradata);
             st->codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
             if (!st->codec->extradata)
                 return AVERROR(ENOMEM);