Commit 21a2b973 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/hls: do not limit manifest lines to 1024 chars

Fixes Ticket2976
Debuged-by: jaimeMF
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a072acb1
...@@ -212,7 +212,7 @@ static int parse_playlist(HLSContext *c, const char *url, ...@@ -212,7 +212,7 @@ static int parse_playlist(HLSContext *c, const char *url,
uint8_t iv[16] = ""; uint8_t iv[16] = "";
int has_iv = 0; int has_iv = 0;
char key[MAX_URL_SIZE] = ""; char key[MAX_URL_SIZE] = "";
char line[1024]; char line[MAX_URL_SIZE];
const char *ptr; const char *ptr;
int close_in = 0; int close_in = 0;
......
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