forked from FFmpeg/FFmpeg
use av_strdup instead malloc/strcpy
Originally committed as revision 8785 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d2040a8fb6
commit
cb2abe3f4d
1 changed files with 1 additions and 2 deletions
|
@ -3896,8 +3896,7 @@ static int parse_ffconfig(const char *filename)
|
|||
if (!argbuf[0])
|
||||
break;
|
||||
|
||||
feed->child_argv[i] = av_malloc(strlen(argbuf) + 1);
|
||||
strcpy(feed->child_argv[i], argbuf);
|
||||
feed->child_argv[i] = av_strdup(argbuf);
|
||||
}
|
||||
|
||||
feed->child_argv[i] = av_malloc(30 + strlen(feed->filename));
|
||||
|
|
Loading…
Add table
Reference in a new issue