The branch, v3-6-test has been updated
via 3641ba3 libcli/smb: fix unitialized padding in
smb2_create_blob_push_one() (bug #9209)
from f5f6d9e WHATSNEW: Start to add changes since 3.6.8.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test
- Log -----------------------------------------------------------------
commit 3641ba3d1e57d366fd3cad0e142fd21db30a68de
Author: Stefan Metzmacher <[email protected]>
Date: Sat Oct 27 08:11:14 2012 +0200
libcli/smb: fix unitialized padding in smb2_create_blob_push_one() (bug
#9209)
Signed-off-by: Stefan Metzmacher <[email protected]>
Autobuild-User(master): Stefan Metzmacher <[email protected]>
Autobuild-Date(master): Sat Oct 27 10:05:22 CEST 2012 on sn-devel-104
(cherry picked from commit 2b4672f2d30c01a4767acf660ddb061676c59908)
-----------------------------------------------------------------------
Summary of changes:
libcli/smb/smb2_create_blob.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/libcli/smb/smb2_create_blob.c b/libcli/smb/smb2_create_blob.c
index d3a9663..ee9fa7e 100644
--- a/libcli/smb/smb2_create_blob.c
+++ b/libcli/smb/smb2_create_blob.c
@@ -111,7 +111,7 @@ static NTSTATUS smb2_create_blob_push_one(TALLOC_CTX
*mem_ctx, DATA_BLOB *buffer
size_t next_pad = 0;
bool ok;
- blob_offset = 0x14 + tag_length;
+ blob_offset = 0x10 + tag_length;
blob_pad = smb2_create_blob_padding(blob_offset, 8);
next_offset = blob_offset + blob_pad + blob->data.length;
if (!last) {
--
Samba Shared Repository