The Samba-Bugzilla – Attachment 11738 Details for
Bug 11624
Memory leak after smbc_free_context() on the session while accessing shares on DFS junctions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am fix for 4.3.next, 4.2.next.
0001-s3-libsmb-Correctly-initialize-the-list-head-when-ke.patch (text/plain), 1.52 KB, created by
Jeremy Allison
on 2015-12-21 23:56:46 UTC
(
hide
)
Description:
git-am fix for 4.3.next, 4.2.next.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2015-12-21 23:56:46 UTC
Size:
1.52 KB
patch
obsolete
>From 368b91e692efb7ebf1e71b8c6af3d9c10611ff16 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Wed, 16 Dec 2015 11:04:20 -0800 >Subject: [PATCH] s3: libsmb: Correctly initialize the list head when keeping a > list of primary followed by DFS connections. > >Greatly helped by <shargagan@novell.com> to >track down this issue. > >BUG: https://bugzilla.samba.org/show_bug.cgi?id=11624 > >Signed-off-by: Jeremy Allison <jra@samba.org> >Reviewed-by: Volker Lendecke <vl@samba.org> > >Autobuild-User(master): Volker Lendecke <vl@samba.org> >Autobuild-Date(master): Fri Dec 18 01:02:55 CET 2015 on sn-devel-144 > >(cherry picked from commit d7feb1879ee711598540049c2c5eccc80fd6f1e5) >--- > source3/libsmb/libsmb_server.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/source3/libsmb/libsmb_server.c b/source3/libsmb/libsmb_server.c >index 0a58d8c..6e8e3c3 100644 >--- a/source3/libsmb/libsmb_server.c >+++ b/source3/libsmb/libsmb_server.c >@@ -628,7 +628,7 @@ SMBC_server_internal(TALLOC_CTX *ctx, > } > > ZERO_STRUCTP(srv); >- srv->cli = c; >+ DLIST_ADD(srv->cli, c); > srv->dev = (dev_t)(str_checksum(server) ^ str_checksum(share)); > srv->no_pathinfo = False; > srv->no_pathinfo2 = False; >@@ -824,7 +824,7 @@ SMBC_attr_server(TALLOC_CTX *ctx, > } > > ZERO_STRUCTP(ipc_srv); >- ipc_srv->cli = ipc_cli; >+ DLIST_ADD(ipc_srv->cli, ipc_cli); > > nt_status = cli_rpc_pipe_open_noauth( > ipc_srv->cli, &ndr_table_lsarpc, &pipe_hnd); >-- >2.6.0.rc2.230.g3dd15c0 >
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 11624
:
11629
|
11730
| 11738