[SCM] Samba Shared Repository - branch master updated - tevent-0-9-8-646-g0724649

Volker Lendecke vlendec at samba.org
Tue Sep 22 22:26:36 MDT 2009


The branch, master has been updated
       via  0724649a8a7c04d015317d9dc2ae43ee87c1bd25 (commit)
      from  ee4f7f1209cc7668e7245d21e9bf2424d8c77244 (commit)

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


- Log -----------------------------------------------------------------
commit 0724649a8a7c04d015317d9dc2ae43ee87c1bd25
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Sep 23 06:23:50 2009 +0200

    s3:winbind: Fix an uninitialized variable

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

Summary of changes:
 source3/winbindd/winbindd_cm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index d03a580..05df19f 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -2192,7 +2192,7 @@ NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
 
 	status = init_dc_connection(domain);
 	if (!NT_STATUS_IS_OK(status)) {
-		goto done;
+		return status;
 	}
 
 	conn = &domain->conn;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list