Commit d6ded940 authored by Martin Storsjö's avatar Martin Storsjö

rtmpproto: Lengthen the filename buffer when receiving streams

Some applications such as Adobe FME append lots of parameters
here, making it easily overflow the current limit.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 7395784b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment