diff --git a/src/text/url.c b/src/text/url.c index 60b78c64dc0c3f381826c59fd248bf127fbb3786..f2d7fb986be370c48621e65fc9b41dc82c2041ab 100644 --- a/src/text/url.c +++ b/src/text/url.c @@ -193,9 +193,9 @@ char *vlc_path2uri (const char *path, const char *scheme) if (!strncmp (path, "\\\\", 2)) { /* Windows UNC paths */ /* \\host\share\path -> file://host/share/path */ - size_t hostlen = strcspn (path + 2, DIR_SEP); + int hostlen = strcspn (path + 2, DIR_SEP); - if (asprintf (&buf, "file://%s", path + 2) == -1) + if (asprintf (&buf, "file://%.*s", hostlen, path + 2) == -1) buf = NULL; path += 2 + hostlen;