http: use av_strlcpy instead of strcpy() without size checks

Fixes CID700730.
This commit is contained in:
Janne Grunau 2012-10-09 20:50:50 +02:00
parent 79e6e8eba2
commit 4a7c0c4555

View File

@ -308,7 +308,7 @@ static int process_line(URLContext *h, char *line, int line_count,
while (isspace(*p)) while (isspace(*p))
p++; p++;
if (!av_strcasecmp(tag, "Location")) { if (!av_strcasecmp(tag, "Location")) {
strcpy(s->location, p); av_strlcpy(s->location, p, sizeof(s->location));
*new_location = 1; *new_location = 1;
} else if (!av_strcasecmp (tag, "Content-Length") && s->filesize == -1) { } else if (!av_strcasecmp (tag, "Content-Length") && s->filesize == -1) {
s->filesize = strtoll(p, NULL, 10); s->filesize = strtoll(p, NULL, 10);