]> granicus.if.org Git - curl/commitdiff
URL: tolerate backslash after drive letter for FILE:
authorJan-E <github@ehrhardt.nl>
Tue, 5 Dec 2017 09:10:59 +0000 (10:10 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 5 Dec 2017 23:53:20 +0000 (00:53 +0100)
... as in "file://c:\some\path\curl.out"

Reviewed-by: Matthew Kerwin
Closes #2154

lib/url.c

index be2105e3b65580ef8ce5f0291b0e7c6f8ed9a66d..a09972a7c24f001cce548a9353bbea975596ba88 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -2033,7 +2033,7 @@ static CURLcode parseurlandfillconn(struct Curl_easy *data,
   ((('a' <= (str)[0] && (str)[0] <= 'z') || \
     ('A' <= (str)[0] && (str)[0] <= 'Z')) && \
    ((str)[1] == ':' || (str)[1] == '|') && \
-   ((str)[2] == '/' || (str)[2] == 0))
+   ((str)[2] == '/' || (str)[2] == '\\' || (str)[2] == 0))
 
   /* Don't mistake a drive letter for a scheme if the default protocol is file.
      curld --proto-default file c:/foo/bar.txt */