From c09e6bf881eb647245eee637a7e943206b7c8176 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 26 Sep 2011 19:40:15 +0200 Subject: [PATCH] wininet: Fix UrlComponents initialisation. --- dlls/wininet/internet.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index 79ec790d611..f9e8dead256 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -635,6 +635,7 @@ static BOOL INTERNET_ConfigureProxy( appinfo_t *lpwai ) UrlComponents.dwUserNameLength = INTERNET_MAX_USER_NAME_LENGTH; UrlComponents.lpszPassword = password; UrlComponents.dwPasswordLength = INTERNET_MAX_PASSWORD_LENGTH; + UrlComponents.dwUrlPathLength = 0; UrlComponents.dwExtraInfoLength = 0; if(InternetCrackUrlW(wpi.proxy, 0, 0, &UrlComponents)) -- 2.11.4.GIT