diff --git a/lib/url.c b/lib/url.c index 33afb0108b542899a9cd98cc12065e41032a01c3..9b0006007882c9059a116e52e5a9a41be15030e0 100644 --- a/lib/url.c +++ b/lib/url.c @@ -2466,6 +2466,10 @@ static CURLcode CreateConnection(struct SessionHandle *data, *tmp=0; /* now cut off the hostname at the ? */ } + else if(!conn->path[0]) { + /* if there's no path set, use a single slash */ + strcpy(conn->path, "/"); + } /* If the URL is malformatted (missing a '/' after hostname before path) we * insert a slash here. The only letter except '/' we accept to start a path