Commit 99f2a563 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '64f8c439'

* commit '64f8c439':
  rtmpproto: Include the full path as app when "slist=" is found
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents a240aefc 64f8c439
......@@ -2681,8 +2681,8 @@ reconnect:
qmark = strchr(path, '?');
if (qmark && strstr(qmark, "slist=")) {
char* amp;
// After slist we have the playpath, before the params, the app
av_strlcpy(rt->app, path + 1, FFMIN(qmark - path, APP_MAX_LENGTH));
// After slist we have the playpath, the full path is used as app
av_strlcpy(rt->app, path + 1, APP_MAX_LENGTH);
fname = strstr(path, "slist=") + 6;
// Strip any further query parameters from fname
amp = strchr(fname, '&');
......
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