aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-15 15:29:22 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-15 16:00:32 +0100
commite681e92d2c8a46feb11ce1f36ff82c16e37cfe11 (patch)
tree49bedd0e3dd6776eedb6d57181f8a076b4b8cb8d
parent123d356829d6d72f75c820a184fee3dc7086dde0 (diff)
downloadffmpeg-e681e92d2c8a46feb11ce1f36ff82c16e37cfe11.tar.gz
avformat/hls: Even stricter URL checks
This fixes a null pointer dereference at least Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit cfda1bea4c18ec1edbc11ecc465f788b02851488) Conflicts: libavformat/hls.c
-rw-r--r--libavformat/hls.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 472e226faa..a6bf692b01 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -1012,12 +1012,16 @@ static void update_options(char **dest, const char *name, void *src)
static int check_url(const char *url) {
const char *proto_name = avio_find_protocol_name(url);
+
+ if (!proto_name)
+ return AVERROR_INVALIDDATA;
+
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)] == ':')
return 0;
- else if (strcmp(proto_name, "file") || !strcmp(url, "file,"))
+ else if (strcmp(proto_name, "file") || !strncmp(url, "file,", 5))
return AVERROR_INVALIDDATA;
return 0;