Actually parse the auth headers in RTSP

Originally committed as revision 22677 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Martin Storsjö
2010-03-25 21:48:58 +00:00
parent aa8bf2fb80
commit 2626308abb
3 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -2756,7 +2756,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);
ff_rtsp_parse_line(header, line, NULL);
p = p1 + 1;
}