[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Fri Oct 18 19:44:01 MDT 2013


The branch, master has been updated
       via  28cdd1c winbind3: Fix CID 1107229 Uninitialized pointer read
      from  36f4f72 script/mks3param_ctx_table.pl: fix tabs/whitespaces in generated output.

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


- Log -----------------------------------------------------------------
commit 28cdd1c46fec1bffa380c7be6122fb7ee05a9359
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Oct 16 21:02:42 2013 +0200

    winbind3: Fix CID 1107229 Uninitialized pointer read
    
    The first "goto done" would TALLOC_FREE the uninitialized "value"
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Sat Oct 19 03:43:04 CEST 2013 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 ace0160..edb2c7b 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -1565,7 +1565,8 @@ bool fetch_current_dc_from_gencache(TALLOC_CTX *mem_ctx,
 				    const char *domain_name,
 				    char **p_dc_name, char **p_dc_ip)
 {
-	char *key, *value, *p;
+	char *key, *p;
+	char *value = NULL;
 	bool ret = false;
 	char *dc_name = NULL;
 	char *dc_ip = NULL;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list