summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-02-19 12:49:55 +0100
committerVolker Lendecke <vl@samba.org>2012-02-20 22:36:23 +0100
commit0528cb5f3a15b72dcb34ece21a3ffb3e7b8d6eb9 (patch)
tree94acb4ed5d40179e5486149bad0542c5d9952d58
parent9d66ad8c30bd962758143a09d07034bc4f861757 (diff)
downloadsamba-0528cb5f3a15b72dcb34ece21a3ffb3e7b8d6eb9.tar.gz
samba-0528cb5f3a15b72dcb34ece21a3ffb3e7b8d6eb9.tar.bz2
samba-0528cb5f3a15b72dcb34ece21a3ffb3e7b8d6eb9.zip
s3: Fix bug 8567 -- segfault in dom_sid_compare
The underlying problem was that with ldapsam:trusted we require the a group mapping for the primary group of every user, including root. Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Mon Feb 20 22:36:23 CET 2012 on sn-devel-104
-rw-r--r--source3/passdb/pdb_ldap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c
index 7c1681031a..04541e881d 100644
--- a/source3/passdb/pdb_ldap.c
+++ b/source3/passdb/pdb_ldap.c
@@ -3027,6 +3027,7 @@ static NTSTATUS ldapsam_enum_group_memberships(struct pdb_methods *methods,
if (dom_sid_compare(&global_sid_NULL, &(*pp_sids)[0]) == 0) {
DEBUG(3, ("primary group of [%s] not found\n",
pdb_get_username(user)));
+ ret = NT_STATUS_INTERNAL_DB_CORRUPTION;
goto done;
}