This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
* fix double free
Originally committed as revision 1206 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Zdenek Kabelac
23 years ago
parent
18f770162b
commit
4533d2d67f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libav/mov.c
+ 1
- 1
libav/mov.c
View File
@@ -1326,7 +1326,7 @@ static int mov_read_close(AVFormatContext *s)
for(i=0; i<mov->total_streams; i++)
mov_free_stream_context(mov->streams[i]);
for(i=0; i<s->nb_streams; i++)
av_free(
s->streams[i]);
av_freep(&
s->streams[i]);
return 0;
}
Write
Preview
Loading…
Cancel
Save