Commit 96185c7e authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

secur32: Clear expiry timestamp in schan_InitializeSecurityContextW().

parent 5e8acd7a
......@@ -904,6 +904,12 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
dump_buffer_desc(pInput);
dump_buffer_desc(pOutput);
if (ptsExpiry)
{
ptsExpiry->LowPart = 0;
ptsExpiry->HighPart = 0;
}
if (!phContext)
{
ULONG_PTR handle;
......
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