You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
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: Martin Storsjö <martin@martin.st>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user