[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Wed Nov 16 12:31:35 MST 2011


The branch, v3-6-test has been updated
       via  5336e30 s3:smb2_flush: outbody only needs 4 bytes
      from  fc394c3 Fix bug #8561 - Password change settings not fully observed.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 5336e301db8f34325338d2b3bcef2cb614e6dddd
Author: Stefan Metzmacher <metze at samba.org>
Date:   Thu Nov 10 12:20:20 2011 +0100

    s3:smb2_flush: outbody only needs 4 bytes
    
    metze
    
    Autobuild-User: Stefan Metzmacher <metze at samba.org>
    Autobuild-Date: Mon Nov 14 10:01:30 CET 2011 on sn-devel-104
    (cherry picked from commit 72cabbbe50a36986dde823f0ba60abf9052c535a)
    
    Fix bug #8579 (smb2_flush sends uninitialized memory).

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/smb2_flush.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/smb2_flush.c b/source3/smbd/smb2_flush.c
index 9b00eb2..5f3c42a 100644
--- a/source3/smbd/smb2_flush.c
+++ b/source3/smbd/smb2_flush.c
@@ -87,7 +87,7 @@ static void smbd_smb2_request_flush_done(struct tevent_req *subreq)
 		return;
 	}
 
-	outbody = data_blob_talloc(req->out.vector, NULL, 0x10);
+	outbody = data_blob_talloc(req->out.vector, NULL, 0x04);
 	if (outbody.data == NULL) {
 		error = smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
 		if (!NT_STATUS_IS_OK(error)) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list