mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/http: Fix Out-of-Bounds access in process_line()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a142ffdcae
commit
85f91ed760
|
@ -915,7 +915,7 @@ static int process_line(URLContext *h, char *line, int line_count,
|
|||
while (av_isspace(*p))
|
||||
p++;
|
||||
resource = p;
|
||||
while (!av_isspace(*p))
|
||||
while (*p && !av_isspace(*p))
|
||||
p++;
|
||||
*(p++) = '\0';
|
||||
av_log(h, AV_LOG_TRACE, "Requested resource: %s\n", resource);
|
||||
|
|
Loading…
Reference in New Issue