Commit 90b1a99b authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix breakage of other RTSP clients

parent e677a71b
......@@ -724,7 +724,7 @@ static int RtspCallback( httpd_callback_sys_t *p_args, httpd_client_t *cl,
answer->p_body = NULL;
}
if( !psz_playnow )
if( !psz_playnow || !*psz_playnow )
break;
}
......@@ -981,7 +981,7 @@ static int RtspCallbackES( httpd_callback_sys_t *p_args, httpd_client_t *cl,
answer->p_body = NULL;
}
if( !psz_playnow )
if( !psz_playnow || !*psz_playnow )
break;
case HTTPD_MSG_PLAY:
......
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