Module: wine Branch: master Commit: 2691e580a0f5f00be94985266fdf08745f99c85f URL: http://source.winehq.org/git/wine.git/?a=commit;h=2691e580a0f5f00be94985266f...
Author: Andrew Talbot andrew.talbot@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) {