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
segment: replace strdup() by av_strdup()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer
14 years ago
parent
52673ab18a
commit
5cdcc44e41
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/segment.c
+ 1
- 1
libavformat/segment.c
View File
@@ -98,7 +98,7 @@ static int seg_write_header(AVFormatContext *s)
if (!seg->path) {
char *t;
seg->path = strdup(s->filename);
seg->path =
av_
strdup(s->filename);
t = rindex(seg->path, '.');
if (t) t = '\0';
}
Write
Preview
Loading…
Cancel
Save