Rebase against 835dfaab023175028161974c5cd8585b77df101c.

This commit is contained in:
Alistair Leslie-Hughes
2021-12-07 14:08:29 +11:00
parent 82e4617d86
commit a2fcffc18e
5 changed files with 17 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
From e229a4497bcfd9649ddfdb2d77f06b03f6e7b97f Mon Sep 17 00:00:00 2001
From 3b7ee6a45c7b33aeccc9ccf7460d1e4d69cc7023 Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Date: Wed, 21 Apr 2021 21:06:55 +1000
Subject: [PATCH] secur32: Input Parameter should be NULL on first call to
@@ -13,10 +13,10 @@ Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c
index 895364a3fc7..58d40cfb3eb 100644
index 32181b3b35f..bca15750bc9 100644
--- a/dlls/secur32/schannel.c
+++ b/dlls/secur32/schannel.c
@@ -915,7 +915,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
@@ -724,7 +724,7 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
ptsExpiry->HighPart = 0;
}
@@ -24,7 +24,7 @@ index 895364a3fc7..58d40cfb3eb 100644
+ if (!phContext || (phNewContext && !pInput))
{
ULONG_PTR handle;
struct create_session_params create_params;
diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c
index 7cb3871193c..27381d60b38 100644
--- a/dlls/secur32/tests/schannel.c