Commit 15206ffd authored by Nicolas George's avatar Nicolas George

ffserver: add NULL context to ff_rtsp_parse_line().

Needed after f62fe535/2c17fb61.
parent 27ce53b5
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment