From a94313e06a030e1a1afff18c797e700eb6b25248 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 3 Mar 2008 18:12:26 +0100 Subject: [PATCH] Zero out the out policy handler in lsa_Close ... after a REALLY long session staring at sniffs we can now join XP to v3-2-test again... Apparently not doing this makes XP keep an internal handle to LSA open which confuses the hell out of it. Karolin, this needs to be in v3-2-stable :-) Volker (cherry picked from commit 2c42fc21d8bede226e411623aecd69038477373b) --- source/rpc_server/srv_lsa_nt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/rpc_server/srv_lsa_nt.c b/source/rpc_server/srv_lsa_nt.c index 1333d656d48..ce3fd1a44fa 100644 --- a/source/rpc_server/srv_lsa_nt.c +++ b/source/rpc_server/srv_lsa_nt.c @@ -1216,6 +1216,7 @@ NTSTATUS _lsa_Close(pipes_struct *p, struct lsa_Close *r) } close_policy_hnd(p, r->in.handle); + ZERO_STRUCTP(r->out.handle); return NT_STATUS_OK; } -- 2.34.1