This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ffserver: add NULL context to ff_rtsp_parse_line().
Needed after f62fe53/2c17fb6.
tags/n3.0
Nicolas George
10 years ago
parent
27ce53b52d
commit
15206ffdbe
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ffserver.c
+ 1
- 1
ffserver.c
View File
@@ -2837,7 +2837,7 @@ static int rtsp_parse_request(HTTPContext *c)
len = sizeof(line) - 1;
memcpy(line, p, len);
line[len] = '\0';
ff_rtsp_parse_line(header, line, NULL, NULL);
ff_rtsp_parse_line(
NULL,
header, line, NULL, NULL);
p = p1 + 1;
}
Write
Preview
Loading…
Cancel
Save