diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-24 15:03:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-24 15:03:27 +0100 |
commit | 58030fc6c802d8cc45f114402ccb27be8c06f76b (patch) | |
tree | 5e5b4b10cd6cf429490b9433326f6e6037dbef12 /libavformat/avio.c | |
parent | 32ed7da1350e551ec005b75e482da74f2e93fbb9 (diff) | |
download | ffmpeg-58030fc6c802d8cc45f114402ccb27be8c06f76b.tar.gz |
avio: Fix handling of filenames that contain :
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avio.c')
-rw-r--r-- | libavformat/avio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c index a9f4253059..efe1c26683 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -288,17 +288,17 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags, { URLProtocol *up = NULL; char proto_str[128], proto_nested[128], *ptr; - const char *proto_end = strchr(filename, ':'); + size_t proto_len = strspn(filename, URL_SCHEME_CHARS); if (!first_protocol) { av_log(NULL, AV_LOG_WARNING, "No URL Protocols are registered. " "Missing call to av_register_all()?\n"); } - if (!proto_end || is_dos_path(filename)) + if (filename[proto_len] != ':' && filename[proto_len] != ',' || is_dos_path(filename)) strcpy(proto_str, "file"); else - av_strlcpy(proto_str, filename, FFMIN(proto_end-filename+1, sizeof(proto_str))); + av_strlcpy(proto_str, filename, FFMIN(proto_len+1, sizeof(proto_str))); if ((ptr = strchr(proto_str, ','))) *ptr = '\0'; |