wininet: Remove unused variable

Andrew Talbot andrew.talbot at talbotville.com
Thu Nov 22 15:02:08 CST 2012


Changelog:
    wininet: Remove unused variable.

diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c
index d04e825..8d610c3 100644
--- a/dlls/wininet/internet.c
+++ b/dlls/wininet/internet.c
@@ -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)
                 {




More information about the wine-patches mailing list