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
Replace an incorrect av_free() in movenc.c with av_freep().
tags/n2.3
Carl Eugen Hoyos
12 years ago
parent
27b4d154ca
commit
d68ac92dc2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/movenc.c
+ 1
- 1
libavformat/movenc.c
View File
@@ -3598,7 +3598,7 @@ static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
track->enc->extradata = buf;
track->enc->extradata_size = size;
} else {
av_free(&buf);
av_free
p
(&buf);
}
}
#endif
Write
Preview
Loading…
Cancel
Save