diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-23 16:35:17 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-23 16:35:17 +0100 |
commit | a106b7e8b93f9b5f1666d0d8c327314a7d593569 (patch) | |
tree | 33158c75c541a357449d0616903cbad305905e65 | |
parent | 36fcbc00765aa9f5e89c10bdeab744ecae153f37 (diff) | |
parent | d6ded94036e43a04889f4ff2813a7f7dd60b82fe (diff) | |
download | ffmpeg-a106b7e8b93f9b5f1666d0d8c327314a7d593569.tar.gz |
Merge commit 'd6ded94036e43a04889f4ff2813a7f7dd60b82fe'
* commit 'd6ded94036e43a04889f4ff2813a7f7dd60b82fe':
rtmpproto: Lengthen the filename buffer when receiving streams
Merged-by: Clément Bœsch <u@pkh.me>
-rw-r--r-- | libavformat/rtmpproto.c | 2 |
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; |