Commit 007d1497 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winhttp: Remove dead assignment (Clang).

parent 754dffe1
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment