summaryrefslogtreecommitdiff
path: root/libavformat/rtmpproto.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-23 16:35:17 +0100
committerClément Bœsch <u@pkh.me>2017-03-23 16:35:17 +0100
commita106b7e8b93f9b5f1666d0d8c327314a7d593569 (patch)
tree33158c75c541a357449d0616903cbad305905e65 /libavformat/rtmpproto.c
parent36fcbc00765aa9f5e89c10bdeab744ecae153f37 (diff)
parentd6ded94036e43a04889f4ff2813a7f7dd60b82fe (diff)
Merge commit 'd6ded94036e43a04889f4ff2813a7f7dd60b82fe'
* commit 'd6ded94036e43a04889f4ff2813a7f7dd60b82fe': rtmpproto: Lengthen the filename buffer when receiving streams Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat/rtmpproto.c')
-rw-r--r--libavformat/rtmpproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index c0e2df447e..83ab296933 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -1926,7 +1926,7 @@ static int send_invoke_response(URLContext *s, RTMPPacket *pkt)
{
RTMPContext *rt = s->priv_data;
double seqnum;
- char filename[64];
+ char filename[128];
char command[64];
int stringlen;
char *pchar;