Frédéric Delanoy : winhttp: Remove dead assignment (Clang).

Alexandre Julliard julliard at winehq.org
Wed Jul 6 13:31:08 CDT 2011


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

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Wed Jul  6 10:34:48 2011 +0200

winhttp: Remove dead assignment (Clang).

---

 dlls/winhttp/session.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/dlls/winhttp/session.c b/dlls/winhttp/session.c
index 5c13abd..14f3940 100644
--- a/dlls/winhttp/session.c
+++ b/dlls/winhttp/session.c
@@ -1595,7 +1595,6 @@ BOOL WINAPI WinHttpTimeToSystemTime( LPCWSTR string, SYSTEMTIME *time )
     while (*s && !isdigitW( *s )) s++;
     if (*s == '\0') return TRUE;
     time->wSecond = strtolW( s, &end, 10 );
-    s = end;
 
     time->wMilliseconds = 0;
     return TRUE;




More information about the wine-cvs mailing list