mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 17:32:06 +00:00
avformat/hls: forbid all protocols except http(s) & file
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
92465a2347
commit
7145e80b4f
@ -610,6 +610,10 @@ static int open_url(HLSContext *c, URLContext **uc, const char *url, AVDictionar
|
||||
{
|
||||
AVDictionary *tmp = NULL;
|
||||
int ret;
|
||||
const char *proto_name = avio_find_protocol_name(url);
|
||||
// only http(s) & file are allowed
|
||||
if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL))
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
av_dict_copy(&tmp, c->avio_opts, 0);
|
||||
av_dict_copy(&tmp, opts, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user