s3: libsmb: Correctly initialize the list head when keeping a list of primary followe...
authorJeremy Allison <jra@samba.org>
Wed, 16 Dec 2015 19:04:20 +0000 (11:04 -0800)
committerKarolin Seeger <kseeger@samba.org>
Wed, 6 Jan 2016 09:07:18 +0000 (10:07 +0100)
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

index 0a58d8cc9fa8a7ac428b3d5477d9fe588777112b..6e8e3c37d3278ec7bae53126af397ea045b317d2 100644 (file)
@@ -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);