mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-17 21:14:47 +00:00
http: use av_strlcpy instead of strcpy() without size checks
Fixes CID700730.
This commit is contained in:
parent
79e6e8eba2
commit
4a7c0c4555
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user