mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
additional fix for the malformed URL fix of yday
This commit is contained in:
parent
6ff092f140
commit
eff36caea8
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user