The branch, master has been updated
       via  a40bb91 s3: Fix uninitialized variables
      from  be3e851 Fix some nonempty blank lines

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


- Log -----------------------------------------------------------------
commit a40bb91213a321ea08897d7152d9d64defa1a8b1
Author: Volker Lendecke <[email protected]>
Date:   Sat Mar 5 17:37:53 2011 +0100

    s3: Fix uninitialized variables
    
    Autobuild-User: Volker Lendecke <[email protected]>
    Autobuild-Date: Sat Mar  5 17:25:43 CET 2011 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index f221532..8a21f47 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -1431,7 +1431,8 @@ static void store_current_dc_in_gencache(const char 
*domain_name,
                                         struct cli_state *cli)
 {
        char addr[INET6_ADDRSTRLEN];
-       char *key, *value;
+       char *key = NULL;
+       char *value = NULL;
 
        if (cli == NULL) {
                return;


-- 
Samba Shared Repository

Reply via email to