[SCM] Samba Shared Repository - branch v3-6-test updated

Volker Lendecke vlendec at samba.org
Wed Mar 23 04:26:16 MDT 2011


The branch, v3-6-test has been updated
       via  710a2b6 s3: Fix a (invalid) uninitialized variable warning
      from  012e371 s3:WHATSNEW: document changes of the id mapping system

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 710a2b686e3531a3ba4c559dfa40e6bc509859fe
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Mar 23 11:08:46 2011 +0100

    s3: Fix a (invalid) uninitialized variable warning
    
    Autobuild-User: Volker Lendecke <vlendec at samba.org>
    Autobuild-Date: Wed Mar 23 11:13:14 CET 2011 on sn-devel-104
    (cherry picked from commit 429e84f0d48f6e711b2067f422b9a3ac596ba0a4)

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

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


Changeset truncated at 500 lines:

diff --git a/source3/auth/auth_netlogond.c b/source3/auth/auth_netlogond.c
index 66bd713..5c76542 100644
--- a/source3/auth/auth_netlogond.c
+++ b/source3/auth/auth_netlogond.c
@@ -205,7 +205,7 @@ static NTSTATUS get_ldapi_ctx(TALLOC_CTX *mem_ctx, struct tldap_context **pld)
 static NTSTATUS mymachinepw(uint8_t pwd[16])
 {
 	TALLOC_CTX *frame = talloc_stackframe();
-	struct tldap_context *ld;
+	struct tldap_context *ld = NULL;
 	struct tldap_message *rootdse, **msg;
 	const char *attrs[1] = { "unicodePwd" };
 	char *default_nc, *myname;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list