The Samba-Bugzilla – Attachment 5914 Details for
Bug 7635
smbclient -M not sending due to NT_STATUS_PIPE_BROKEN
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for 3.5
0001-s3-Fix-bug-7635.patch (text/plain), 1020 bytes, created by
Volker Lendecke
on 2010-08-21 05:08:27 UTC
(
hide
)
Description:
Patch for 3.5
Filename:
MIME Type:
Creator:
Volker Lendecke
Created:
2010-08-21 05:08:27 UTC
Size:
1020 bytes
patch
obsolete
>From 856c682d5c8ed76a0f3a4fa086aabdde1c06998b Mon Sep 17 00:00:00 2001 >From: Volker Lendecke <vl@samba.org> >Date: Sat, 21 Aug 2010 11:32:58 +0200 >Subject: [PATCH] s3: Fix bug 7635 > >--- > source3/libsmb/climessage.c | 6 ++++-- > 1 files changed, 4 insertions(+), 2 deletions(-) > >diff --git a/source3/libsmb/climessage.c b/source3/libsmb/climessage.c >index 2c8ef58..0993037 100644 >--- a/source3/libsmb/climessage.c >+++ b/source3/libsmb/climessage.c >@@ -63,8 +63,10 @@ static struct tevent_req *cli_message_start_send(TALLOC_CTX *mem_ctx, > > *p++ = 4; > memcpy(p, utmp, ulen); >+ p += ulen; > *p++ = 4; > memcpy(p, htmp, hlen); >+ p += hlen; > TALLOC_FREE(htmp); > TALLOC_FREE(utmp); > >@@ -163,8 +165,8 @@ static struct tevent_req *cli_message_text_send(TALLOC_CTX *mem_ctx, > TALLOC_FREE(tmp); > return tevent_req_post(req, ev); > } >- SCVAL(bytes, 0, 0); /* pad */ >- SSVAL(bytes, 1, msglen); >+ SCVAL(bytes, 0, 1); /* pad */ >+ SSVAL(bytes+1, 0, msglen); > memcpy(bytes+3, msg, msglen); > TALLOC_FREE(tmp); > >-- >1.7.0.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
jra
:
review+
Actions:
View
Attachments on
bug 7635
:
5912
|
5913
| 5914