[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-2642-g25e76a1

Jeremy Allison jra at samba.org
Sat May 31 00:54:22 GMT 2008


The branch, v3-3-test has been updated
       via  25e76a19f22cdf726928d6c4b165745de9e455d6 (commit)
      from  3ab5a3883e33eba159152aa02544d71f047c7e45 (commit)

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


- Log -----------------------------------------------------------------
commit 25e76a19f22cdf726928d6c4b165745de9e455d6
Author: Jeremy Allison <jra at samba.org>
Date:   Fri May 30 17:53:16 2008 -0700

    Fix valgrind bug in debug statement. Don't reference uninitialized memory.
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source/winbindd/idmap_util.c b/source/winbindd/idmap_util.c
index bf06cd8..0d24070 100644
--- a/source/winbindd/idmap_util.c
+++ b/source/winbindd/idmap_util.c
@@ -157,11 +157,10 @@ NTSTATUS idmap_sid_to_gid(DOM_SID *sid, gid_t *gid)
 	}
 
 	if ((map.status != ID_MAPPED) || (map.xid.type != ID_TYPE_GID)) {
-		DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u,%u]\n", 
+		DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u]\n", 
 			   sid_string_dbg(sid),
 			   map.status, 
-			   map.xid.type, 
-			   map.xid.id));
+			   map.xid.type));
 		return NT_STATUS_NONE_MAPPED;
 	}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list