From d6ded94036e43a04889f4ff2813a7f7dd60b82fe Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Thu, 13 Oct 2016 15:25:33 +0300 Subject: rtmpproto: Lengthen the filename buffer when receiving streams MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some applications such as Adobe FME append lots of parameters here, making it easily overflow the current limit. Signed-off-by: Martin Storsjö --- libavformat/rtmpproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtmpproto.c') diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 64024259e2..8817744e87 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -1891,7 +1891,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; -- cgit v1.2.3