Browse Source

use av_strdup instead malloc/strcpy

Originally committed as revision 8785 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 19 years ago
parent
commit
cb2abe3f4d
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      ffserver.c

+ 1
- 2
ffserver.c 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));


Loading…
Cancel
Save