[FFmpeg-cvslog] ffserver: add NULL context to ff_rtsp_parse_line().
Nicolas George
git at videolan.org
Sun Nov 29 17:18:39 CET 2015
ffmpeg | branch: master | Nicolas George <george at nsup.org> | Sun Nov 29 16:59:27 2015 +0100| [15206ffdbee3c04e638a01cd4572050cf4cfad42] | committer: Nicolas George
ffserver: add NULL context to ff_rtsp_parse_line().
Needed after f62fe53/2c17fb6.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=15206ffdbee3c04e638a01cd4572050cf4cfad42
---
ffserver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ffserver.c b/ffserver.c
index 7e4f620..65ae431 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -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;
}
More information about the ffmpeg-cvslog
mailing list