Commit 2691e580 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wininet: Remove unused variable.

parent 26671c8f
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment