Commit b9673bcc authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

wininet: Fully initialize time variable (valgrind).

parent 601b4fa5
......@@ -3769,7 +3769,7 @@ static BOOL HTTP_ParseRfc1123Date(LPCWSTR value, FILETIME *ft)
WCHAR *nextPtr, day[4], month[4], *monthPtr;
LPCWSTR ptr;
unsigned long num;
SYSTEMTIME st;
SYSTEMTIME st = { 0 };
ptr = strchrW(value, ',');
if (!ptr)
......
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