The branch, master has been updated
via cb1590e... Ensure we remove SMB2 cancel requests from the active
queue now we don't remove them in the talloc destructor.
from 53e4650... Fix a crash bug found by Ira Cooper
<[email protected]>.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit cb1590e410a3b8fd366f4670786046566b5f4f9c
Author: Jeremy Allison <[email protected]>
Date: Wed Jun 2 16:57:08 2010 -0700
Ensure we remove SMB2 cancel requests from the active queue
now we don't remove them in the talloc destructor.
Jeremy.
-----------------------------------------------------------------------
Summary of changes:
source3/smbd/smb2_server.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c
index 7a2a32a..df25570 100644
--- a/source3/smbd/smb2_server.c
+++ b/source3/smbd/smb2_server.c
@@ -911,6 +911,7 @@ static NTSTATUS smbd_smb2_request_process_cancel(struct
smbd_smb2_request *req)
* we don't need the request anymore
* cancel requests never have a response
*/
+ DLIST_REMOVE(req->sconn->smb2.requests, req);
TALLOC_FREE(req);
for (cur = sconn->smb2.requests; cur; cur = cur->next) {
--
Samba Shared Repository