SAT>IP Server: rtsp/options - handle also '*' url

This commit is contained in:
Jaroslav Kysela 2015-04-05 20:16:14 +02:00
parent 2518d4f821
commit c7a87457cf

View file

@ -1083,7 +1083,7 @@ rtsp_process_options(http_connection_t *hc)
session_t *rs;
int found;
if ((u = rtsp_check_urlbase(u)) == NULL)
if (strcmp(u, "*") != 0 && (u = rtsp_check_urlbase(u)) == NULL)
goto error;
if (hc->hc_session) {