use av_strdup instead malloc/strcpy

Originally committed as revision 8785 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-04-22 17:56:26 +00:00
parent d2040a8fb6
commit cb2abe3f4d

View file

@ -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));