From bae6672ea9a06ee3772e5b7d86483b2eac291247 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 17 Mar 2006 03:12:35 +0000 Subject: r14502: Supply both needed arguments for the backend logoff processing. This should fix the segfaults on the build farm. Metze: please check Andrew Bartlett (This used to be commit fb927a71173eba2bd33bbb9ea589b63f5e33b3f2) --- source4/smb_server/smb/reply.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/smb_server') diff --git a/source4/smb_server/smb/reply.c b/source4/smb_server/smb/reply.c index 7171618f8c..244fd37af9 100644 --- a/source4/smb_server/smb/reply.c +++ b/source4/smb_server/smb/reply.c @@ -2186,8 +2186,10 @@ void smbsrv_reply_ulogoffX(struct smbsrv_request *req) open by this user on all open tree connects */ for (tcon=req->smb_conn->smb_tcons.list;tcon;tcon=tcon->next) { req->tcon = tcon; + req->ctx = tcon->ntvfs; status = ntvfs_logoff(req); req->tcon = NULL; + req->ctx = NULL; if (!NT_STATUS_IS_OK(status)) { smbsrv_send_error(req, status); return; -- cgit