[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-unstable-99-ga128a88

Stefan Metzmacher metze at samba.org
Wed Oct 24 13:38:35 GMT 2007


The branch, v3-2-test has been updated
       via  a128a8805e172738334ec6854548f138c335058b (commit)
      from  49b2b8784b75c10cdf6e91de6a06f0ca435089cc (commit)

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


- Log -----------------------------------------------------------------
commit a128a8805e172738334ec6854548f138c335058b
Author: Stefan Metzmacher <metze at samba.org>
Date:   Wed Oct 24 14:29:06 2007 +0200

    [crash fix] don't use already free'ed memory
    
    (found by "make valgrindtest" and my "start winbindd on make test" patch)
    
    metze
    (cherry picked from commit fe21e48489852720a05b305b251e4f5cbb200f7a)
    (cherry picked from commit 26d8a1ad20c10da495970c584983fbd261b4946e)

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

Summary of changes:
 source/groupdb/mapping.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/groupdb/mapping.c b/source/groupdb/mapping.c
index bd0d775..6f54e3d 100644
--- a/source/groupdb/mapping.c
+++ b/source/groupdb/mapping.c
@@ -705,12 +705,12 @@ NTSTATUS pdb_create_builtin_alias(uint32 rid)
 		return NT_STATUS_ACCESS_DENIED;
 	}
 
-	DEBUG(10,("Creating alias %s with gid %d\n", name, gid));
+	DEBUG(10,("Creating alias %s with gid %d\n", groupname, gid));
 
 	map.gid = gid;
 	sid_copy(&map.sid, &sid);
 	map.sid_name_use = SID_NAME_ALIAS;
-	fstrcpy(map.nt_name, name);
+	fstrcpy(map.nt_name, groupname);
 	fstrcpy(map.comment, "");
 
 	status = pdb_add_group_mapping_entry(&map);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list