wininet: Remove unused variable.

oldstable
Andrew Talbot 2012-11-22 21:02:08 +00:00 committed by Alexandre Julliard
parent 26671c8f36
commit 2691e580a0
1 changed files with 2 additions and 2 deletions

View File

@ -430,11 +430,11 @@ BOOL INTERNET_FindProxyForProtocol(LPCWSTR szProxy, LPCWSTR proto, WCHAR *foundP
/* It wasn't found: look for no protocol */
for (ptr = szProxy; !ret && ptr && *ptr; )
{
LPCWSTR end, equal;
LPCWSTR end;
if (!(end = strchrW(ptr, ' ')))
end = ptr + strlenW(ptr);
if (!(equal = strchrW(ptr, '=')))
if (!strchrW(ptr, '='))
{
if (end - ptr + 1 > *foundProxyLen)
{