[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Mon Jul 25 15:43:03 UTC 2016


The branch, master has been updated
       via  5505e36 kcc: fix a typo
       via  1f1edb6 kcc: typo fix tupple => tuple
       via  1835cde AddressSanitizer: Initialize for vfs_fruit.c
       via  555db4b AddressSanitizer: Initialize for smbd/oplock.c
       via  1f4d935 AddressSanitizer: Initialize for kcc_topology.c
      from  3a683b1 vfs_gpfs: Retry getacl with DAC capability if necessary

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 5505e36fc122e81607cd986493bda2821e24097d
Author: Garming Sam <garming at catalyst.net.nz>
Date:   Mon Jul 25 12:51:29 2016 +1200

    kcc: fix a typo
    
    Signed-off-by: Garming Sam <garming at catalyst.net.nz>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Mon Jul 25 17:42:33 CEST 2016 on sn-devel-144

commit 1f1edb65bf9e09ec77fd10572f89de6b1e77445c
Author: Garming Sam <garming at catalyst.net.nz>
Date:   Fri Jul 22 16:38:40 2016 +1200

    kcc: typo fix tupple => tuple
    
    Signed-off-by: Garming Sam <garming at catalyst.net.nz>
    Reviewed-by: Volker Lendecke <vl at samba.org>

commit 1835cde41353eb817a2b5b83f799f5daeb856a58
Author: Garming Sam <garming at catalyst.net.nz>
Date:   Thu Jun 16 13:01:23 2016 +1200

    AddressSanitizer: Initialize for vfs_fruit.c
    
    Signed-off-by: Garming Sam <garming at catalyst.net.nz>
    Reviewed-by: Volker Lendecke <vl at samba.org>

commit 555db4b8dd26298734a00bba629bcdc1dc9204f1
Author: Garming Sam <garming at catalyst.net.nz>
Date:   Thu Jun 16 13:00:20 2016 +1200

    AddressSanitizer: Initialize for smbd/oplock.c
    
    Signed-off-by: Garming Sam <garming at catalyst.net.nz>
    Reviewed-by: Volker Lendecke <vl at samba.org>

commit 1f4d9355a2bd19bb179df6ea239becb424e949da
Author: Garming Sam <garming at catalyst.net.nz>
Date:   Fri Jul 22 10:56:07 2016 +1200

    AddressSanitizer: Initialize for kcc_topology.c
    
    Signed-off-by: Garming Sam <garming at catalyst.net.nz>
    Reviewed-by: Volker Lendecke <vl at samba.org>

-----------------------------------------------------------------------

Summary of changes:
 python/samba/kcc/__init__.py    | 4 ++--
 python/samba/kcc/kcc_utils.py   | 2 +-
 source3/modules/vfs_fruit.c     | 2 +-
 source3/smbd/oplock.c           | 2 +-
 source4/dsdb/kcc/kcc_topology.c | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)


Changeset truncated at 500 lines:

diff --git a/python/samba/kcc/__init__.py b/python/samba/kcc/__init__.py
index e96ff83..7b5b90d 100644
--- a/python/samba/kcc/__init__.py
+++ b/python/samba/kcc/__init__.py
@@ -936,7 +936,7 @@ class KCC(object):
             n_rep.load_repsFrom(self.samdb)
             n_rep.load_fsmo_roles(self.samdb)
 
-            # Loop thru the existing repsFrom tupples (if any)
+            # Loop thru the existing repsFrom tuples (if any)
             # XXX This is a list and could contain duplicates
             #     (multiple load_repsFrom calls)
             for t_repsFrom in n_rep.rep_repsFrom:
@@ -995,7 +995,7 @@ class KCC(object):
                 if s_dsa is None:
                     continue
 
-                # Loop thru the existing repsFrom tupples (if any) and
+                # Loop thru the existing repsFrom tuples (if any) and
                 # if we already have a tuple for this connection then
                 # no need to proceed to add.  It will have been changed
                 # to have the correct attributes above
diff --git a/python/samba/kcc/kcc_utils.py b/python/samba/kcc/kcc_utils.py
index 1e00918..e624519 100644
--- a/python/samba/kcc/kcc_utils.py
+++ b/python/samba/kcc/kcc_utils.py
@@ -1368,7 +1368,7 @@ class Site(object):
         self.nt_now = nt_now
 
     def load_site(self, samdb):
-        """Loads the NTDS Site Settions options attribute for the site
+        """Loads the NTDS Site Settings options attribute for the site
         as well as querying and loading all DSAs that appear within
         the site.
         """
diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index 6d4389f..6e7899aa 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -3650,7 +3650,7 @@ static NTSTATUS fruit_fset_nt_acl(vfs_handle_struct *handle,
 {
 	NTSTATUS status;
 	bool do_chmod;
-	mode_t ms_nfs_mode;
+	mode_t ms_nfs_mode = 0;
 	int result;
 
 	DBG_DEBUG("fruit_fset_nt_acl: %s\n", fsp_str_dbg(fsp));
diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c
index 4ce3a1d..be20dee 100644
--- a/source3/smbd/oplock.c
+++ b/source3/smbd/oplock.c
@@ -1143,7 +1143,7 @@ static void do_break_to_none(struct tevent_context *ctx,
 
 	for (i=0; i<d->num_leases; i++) {
 		struct share_mode_lease *l = &d->leases[i];
-		struct share_mode_entry *e;
+		struct share_mode_entry *e = NULL;
 		uint32_t j;
 
 		if ((l->current_state & SMB2_LEASE_READ) == 0) {
diff --git a/source4/dsdb/kcc/kcc_topology.c b/source4/dsdb/kcc/kcc_topology.c
index 43685ec..cd4dcc5 100644
--- a/source4/dsdb/kcc/kcc_topology.c
+++ b/source4/dsdb/kcc/kcc_topology.c
@@ -496,7 +496,7 @@ static NTSTATUS kcctpl_create_graph(TALLOC_CTX *mem_ctx,
 				    struct GUID_list guids,
 				    struct kcctpl_graph **_graph)
 {
-	struct kcctpl_graph *graph;
+	struct kcctpl_graph *graph = NULL;
 	uint32_t i;
 
 	graph = talloc_zero(mem_ctx, struct kcctpl_graph);
@@ -3470,7 +3470,7 @@ static NTSTATUS kcctpl_create_intersite_connections(struct kccsrv_service *servi
 		struct ldb_message *cross_ref;
 		unsigned int cr_enabled;
 		int64_t cr_flags;
-		struct kcctpl_graph *graph;
+		struct kcctpl_graph *graph = NULL;
 		bool found_failed_dc, connected;
 		NTSTATUS status;
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list