wininet: Don't strip the port from URLs returned by InternetQueryOption(INTERNET_OPTION_URL).

This commit is contained in:
Hans Leidekker 2013-04-22 11:02:26 +02:00 committed by Alexandre Julliard
parent 578a1a6b26
commit 6f78a63b5b
1 changed files with 0 additions and 2 deletions

View File

@ -2020,8 +2020,6 @@ static DWORD HTTPREQ_QueryOption(object_header_t *hdr, DWORD option, void *buffe
host = HTTP_GetHeader(req, hostW);
strcpyW(url, httpW);
strcatW(url, host->lpszValue);
if (NULL != (pch = strchrW(url + strlenW(httpW), ':')))
*pch = 0;
strcatW(url, req->path);
TRACE("INTERNET_OPTION_URL: %s\n",debugstr_w(url));