Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4f860848
Commit
4f860848
authored
Aug 20, 2015
by
Stephan Holljes
Committed by
Nicolas George
Aug 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/http: Fix parsing http request data to not read over '\0'.
Signed-off-by:
Stephan Holljes
<
klaxa1337@googlemail.com
>
parent
94a4be85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
http.c
libavformat/http.c
+2
-2
No files found.
libavformat/http.c
View file @
4f860848
...
...
@@ -714,7 +714,7 @@ static int process_line(URLContext *h, char *line, int line_count,
if
(
s
->
is_connected_server
)
{
// HTTP method
method
=
p
;
while
(
!
av_isspace
(
*
p
))
while
(
*
p
&&
!
av_isspace
(
*
p
))
p
++
;
*
(
p
++
)
=
'\0'
;
av_log
(
h
,
AV_LOG_TRACE
,
"Received method: %s
\n
"
,
method
);
...
...
@@ -751,7 +751,7 @@ static int process_line(URLContext *h, char *line, int line_count,
while
(
av_isspace
(
*
p
))
p
++
;
version
=
p
;
while
(
!
av_isspace
(
*
p
))
while
(
*
p
&&
!
av_isspace
(
*
p
))
p
++
;
*
p
=
'\0'
;
if
(
av_strncasecmp
(
version
,
"HTTP/"
,
5
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment