1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

s4:smb2srv: remove the chained file handle on close

metze
This commit is contained in:
Stefan Metzmacher 2009-06-09 16:33:46 +02:00
parent d153430e32
commit 7b27b5f674

View File

@ -182,6 +182,10 @@ static void smb2srv_close_send(struct ntvfs_request *ntvfs)
SBVAL(req->out.body, 0x30, io->smb2.out.size);
SIVAL(req->out.body, 0x38, io->smb2.out.file_attr);
/* also destroy the chained file handle */
req->chained_file_handle = NULL;
memset(req->_chained_file_handle, 0, sizeof(req->_chained_file_handle));
smb2srv_send_reply(req);
}