aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2016-06-22 06:36:31 +0200
committerTimothy Gu <timothygu99@gmail.com>2016-07-26 12:07:40 -0700
commit86f92287404286d01e6d9e65e63242637f1850d0 (patch)
tree223b46878f0dbc88ca5ace850fa52ec2717db060
parent7cab4142c541a721db7cf59d9da6b483e9196b90 (diff)
downloadffmpeg-86f92287404286d01e6d9e65e63242637f1850d0.tar.gz
librtmp: Avoid an infiniloop setting connection arguments
The exit condition was missing. Signed-off-by: Timothy Gu <timothygu99@gmail.com> (cherry picked from commit e85d38c20a8893cb59d7c86f74481f2497882196) Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r--libavformat/librtmp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c
index 0fea675b38..146df660ac 100644
--- a/libavformat/librtmp.c
+++ b/libavformat/librtmp.c
@@ -193,6 +193,8 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
if (sep)
p = sep + 1;
+ else
+ break;
}
}
if (ctx->playpath) {