The Samba-Bugzilla – Attachment 9672 Details for
Bug 10415
*** glibc detected *** /usr/sbin/smbd: free(): invalid next size (fast)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am fix for 4.0.next.
0001-smbd-Fix-memory-overwrites.patch (text/plain), 1.21 KB, created by
Jeremy Allison
on 2014-02-10 18:10:52 UTC
(
hide
)
Description:
git-am fix for 4.0.next.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2014-02-10 18:10:52 UTC
Size:
1.21 KB
patch
obsolete
>From d94025fa0605c15eaca874587f67d1812467088d Mon Sep 17 00:00:00 2001 >From: Volker Lendecke <vl@samba.org> >Date: Mon, 10 Feb 2014 10:08:46 -0800 >Subject: [PATCH] smbd: Fix memory overwrites > >SIVAL writes 32 bit, not 16 > >Signed-off-by: Volker Lendecke <vl@samba.org> >Reviewed-by: Michael Adam <obnox@samba.org> > >Back-ported-from master git commit : 9088bde059e93a84745ec2158e2e640b5bb13844 >--- > source3/smbd/smb2_ioctl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/source3/smbd/smb2_ioctl.c b/source3/smbd/smb2_ioctl.c >index c46520a..8d24fb5 100644 >--- a/source3/smbd/smb2_ioctl.c >+++ b/source3/smbd/smb2_ioctl.c >@@ -569,8 +569,8 @@ static struct tevent_req *smbd_smb2_ioctl_send(TALLOC_CTX *mem_ctx, > > SIVAL(state->out_output.data, 0x00, conn->smb2.server.capabilities); > memcpy(state->out_output.data+0x04, out_guid_blob.data, 16); >- SIVAL(state->out_output.data, 0x14, conn->smb2.server.security_mode); >- SIVAL(state->out_output.data, 0x16, conn->smb2.server.dialect); >+ SSVAL(state->out_output.data, 0x14, conn->smb2.server.security_mode); >+ SSVAL(state->out_output.data, 0x16, conn->smb2.server.dialect); > > tevent_req_done(req); > return tevent_req_post(req, ev); >-- >1.9.0.rc1.175.g0b1dcb5 >
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:
vl
:
review+
Actions:
View
Attachments on
bug 10415
:
9636
|
9637
|
9638
|
9645
|
9646
|
9656
|
9658
|
9659
|
9660
|
9661
|
9668
|
9669
|
9671
| 9672