From 65e7226147bb1e9df6de22f2b42005fe5778bcdb Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Sat, 31 Mar 2007 14:36:24 +0000 Subject: use av_strdup Originally committed as revision 8567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ffserver.c') diff --git a/ffserver.c b/ffserver.c index 114aea4..fdb0f54 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4320,11 +4320,7 @@ static int parse_ffconfig(const char *filename) get_arg(arg, sizeof(arg), &p); if (stream) { av_freep(&stream->rtsp_option); - /* XXX: av_strdup ? */ - stream->rtsp_option = av_malloc(strlen(arg) + 1); - if (stream->rtsp_option) { - strcpy(stream->rtsp_option, arg); - } + stream->rtsp_option = av_strdup(arg); } } else if (!strcasecmp(cmd, "MulticastAddress")) { get_arg(arg, sizeof(arg), &p); -- cgit v1.1