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