Commit e3ec60d8 authored by Art Clarke's avatar Art Clarke Committed by Baptiste Coudurier

free private streamcontext when closing demuxer, fix memory leak, patch by Art...

free private streamcontext when closing demuxer, fix memory leak, patch by Art Clarke, aclarke at vlideshow dot com

Originally committed as revision 13800 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 28215b37
......@@ -1899,6 +1899,7 @@ static int mov_read_close(AVFormatContext *s)
av_freep(&sc->drefs);
if (sc->pb && sc->pb != s->pb)
url_fclose(sc->pb);
av_freep(&sc);
}
if(mov->dv_demux){
for(i=0; i<mov->dv_fctx->nb_streams; i++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment