Browse Source

librtmp: Avoid an infiniloop setting connection arguments

The exit condition was missing.

CC: libav-stable@libav.org
tags/n3.2
Luca Barbato 9 years ago
parent
commit
4dbfcd0757
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavformat/librtmp.c

+ 2
- 0
libavformat/librtmp.c View File

@@ -189,6 +189,8 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)


if (sep) if (sep)
p = sep + 1; p = sep + 1;
else
break;
} }
} }
if (ctx->playpath) { if (ctx->playpath) {


Loading…
Cancel
Save