]> git.sesse.net Git - ffmpeg/commitdiff
ffserver: add NULL context to ff_rtsp_parse_line().
authorNicolas George <george@nsup.org>
Sun, 29 Nov 2015 15:59:27 +0000 (16:59 +0100)
committerNicolas George <george@nsup.org>
Sun, 29 Nov 2015 16:02:04 +0000 (17:02 +0100)
Needed after f62fe53/2c17fb6.

ffserver.c

index 7e4f6208c53194d093ea15ea1740f0d44d75007d..65ae431752ad6d0dc53419e880dcad5f34105e34 100644 (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;
     }