Browse Source

avformat/hls: Even stricter URL checks

This fixes a null pointer dereference at least

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer 10 years ago
parent
commit
cfda1bea4c
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavformat/hls.c

+ 5
- 1
libavformat/hls.c View File

@@ -611,12 +611,16 @@ 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);

if (!proto_name)
return AVERROR_INVALIDDATA;

// only http(s) & file are allowed
if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL))
return AVERROR_INVALIDDATA;
if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':')
;
else if (strcmp(proto_name, "file") || !strcmp(url, "file,"))
else if (strcmp(proto_name, "file") || !strncmp(url, "file,", 5))
return AVERROR_INVALIDDATA;

av_dict_copy(&tmp, c->avio_opts, 0);


Loading…
Cancel
Save