The Samba-Bugzilla – Attachment 9671 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 for for 4.1.next.
0001-smbd-Fix-memory-overwrites.patch (text/plain), 1.29 KB, created by
Jeremy Allison
on 2014-02-10 18:09:48 UTC
(
hide
)
Description:
git-am for for 4.1.next.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2014-02-10 18:09:48 UTC
Size:
1.29 KB
patch
obsolete
>From 77b0839497e20417b0d39916257c9fc838cf76de Mon Sep 17 00:00:00 2001 >From: Volker Lendecke <vl@samba.org> >Date: Fri, 7 Feb 2014 16:37:38 +0100 >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> > >Autobuild-User(master): Michael Adam <obnox@samba.org> >Autobuild-Date(master): Fri Feb 7 20:07:23 CET 2014 on sn-devel-104 > >(cherry picked from commit 9088bde059e93a84745ec2158e2e640b5bb13844) >--- > source3/smbd/smb2_ioctl_network_fs.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/source3/smbd/smb2_ioctl_network_fs.c b/source3/smbd/smb2_ioctl_network_fs.c >index cf87584..49c2715 100644 >--- a/source3/smbd/smb2_ioctl_network_fs.c >+++ b/source3/smbd/smb2_ioctl_network_fs.c >@@ -409,8 +409,8 @@ static NTSTATUS fsctl_validate_neg_info(TALLOC_CTX *mem_ctx, > > SIVAL(out_output->data, 0x00, conn->smb2.server.capabilities); > memcpy(out_output->data+0x04, out_guid_blob.data, 16); >- SIVAL(out_output->data, 0x14, conn->smb2.server.security_mode); >- SIVAL(out_output->data, 0x16, conn->smb2.server.dialect); >+ SSVAL(out_output->data, 0x14, conn->smb2.server.security_mode); >+ SSVAL(out_output->data, 0x16, conn->smb2.server.dialect); > > return NT_STATUS_OK; > } >-- >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