[SCM] Samba Shared Repository - branch master updated

Simo Sorce idra at samba.org
Fri Aug 23 18:29:02 MDT 2013


The branch, master has been updated
       via  9423d5a Fix bug #10063 - source3/lib/util.c:1493 leaking memory w/ pam_winbind.so / winbind
      from  3ddb77f torture: Split the fsinfo check into a separate test

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


- Log -----------------------------------------------------------------
commit 9423d5afb71e272298f4858d82f436e19ee2b07f
Author: Jeremy Allison <jra at samba.org>
Date:   Fri Aug 2 15:03:39 2013 -0700

    Fix bug #10063 - source3/lib/util.c:1493 leaking memory w/ pam_winbind.so / winbind
    
    Don't use talloc_tos() in something that can be linked to in pam_winbindd.so
    
    Signed-off-by: Jeremy Allison <jra at samba.org>
    Reviewed-by: Simo Sorce <idra at samba.org>
    
    Autobuild-User(master): Simo Sorce <idra at samba.org>
    Autobuild-Date(master): Sat Aug 24 02:28:28 CEST 2013 on sn-devel-104

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

Summary of changes:
 source3/lib/util.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/util.c b/source3/lib/util.c
index bf6c8c5..5168092 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1462,10 +1462,12 @@ char *myhostname(void)
 
 char *myhostname_upper(void)
 {
-	char *name;
 	static char *ret;
 	if (ret == NULL) {
-		name = get_myname(talloc_tos());
+		char *name = get_myname(NULL);
+		if (name == NULL) {
+			return NULL;
+		}
 		ret = strupper_talloc(NULL, name);
 		talloc_free(name);
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list