From ae9f0529fde50a8a16e8c76ecef0450d6ca1939b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 27 Oct 2012 08:11:14 +0200 Subject: [PATCH] libcli/smb: fix unitialized padding in smb2_create_blob_push_one() (bug #9209) Signed-off-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Sat Oct 27 10:05:22 CEST 2012 on sn-devel-104 (cherry picked from commit 2b4672f2d30c01a4767acf660ddb061676c59908) --- libcli/smb/smb2_create_blob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcli/smb/smb2_create_blob.c b/libcli/smb/smb2_create_blob.c index 92387db..c6b2e1e 100644 --- a/libcli/smb/smb2_create_blob.c +++ b/libcli/smb/smb2_create_blob.c @@ -113,7 +113,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) { -- 1.7.9.5