winhttp: Remove dead assignment (Clang).

This commit is contained in:
Frédéric Delanoy 2011-07-06 10:34:48 +02:00 committed by Alexandre Julliard
parent 754dffe1e5
commit 007d14972c
1 changed files with 0 additions and 1 deletions

View File

@ -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;