The Samba-Bugzilla – Attachment 9660 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]
Patch
look (text/plain), 1.05 KB, created by
Volker Lendecke
on 2014-02-07 15:39:01 UTC
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Volker Lendecke
Created:
2014-02-07 15:39:01 UTC
Size:
1.05 KB
patch
obsolete
>From 7db531163eb4b619bd6163ca2747139b3eb96383 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> >--- > 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 1e1e3e5..84cf88c 100644 >--- a/source3/smbd/smb2_ioctl_network_fs.c >+++ b/source3/smbd/smb2_ioctl_network_fs.c >@@ -394,8 +394,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); >+ SVAL(out_output->data, 0x14, conn->smb2.server.security_mode); >+ SVAL(out_output->data, 0x16, conn->smb2.server.dialect); > > return NT_STATUS_OK; > } >-- >1.7.9.5 >
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
Actions:
View
Attachments on
bug 10415
:
9636
|
9637
|
9638
|
9645
|
9646
|
9656
|
9658
|
9659
|
9660
|
9661
|
9668
|
9669
|
9671
|
9672