summaryrefslogtreecommitdiff
path: root/libavformat/librtmp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-09 12:36:23 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-09 12:36:23 +0100
commitd1970929b5f8b873aac171586343c9d8142897ad (patch)
tree3bfcb25b707affb787edb5c58f5006948489eefb /libavformat/librtmp.c
parent55d592f7d9847a22b594ebe413508d1f77a13ed6 (diff)
avformat/librtmp: fix swfurl
Found-by: JULIAN GARDNER <joolzg@btinternet.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/librtmp.c')
-rw-r--r--libavformat/librtmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c
index c57699cc9e..67939b912e 100644
--- a/libavformat/librtmp.c
+++ b/libavformat/librtmp.c
@@ -169,7 +169,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
}
if (ctx->swfurl) {
av_strlcat(filename, " swfUrl=", len);
- av_strlcat(filename, ctx->pageurl, len);
+ av_strlcat(filename, ctx->swfurl, len);
}
if (ctx->flashver) {
av_strlcat(filename, " flashVer=", len);