Andrew Talbot : wininet: Remove unused variable.

Alexandre Julliard julliard at winehq.org
Fri Nov 23 12:53:23 CST 2012


Module: wine
Branch: master
Commit: 2691e580a0f5f00be94985266fdf08745f99c85f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2691e580a0f5f00be94985266fdf08745f99c85f

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Nov 22 21:02:08 2012 +0000

wininet: Remove unused variable.

---

 dlls/wininet/internet.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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-cvs mailing list