ffserver: add NULL context to ff_rtsp_parse_line().

Needed after f62fe53/2c17fb6.
This commit is contained in:
Nicolas George 2015-11-29 16:59:27 +01:00
parent 27ce53b52d
commit 15206ffdbe

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;
}