diff options
author | Günther Deschner <gd@samba.org> | 2008-03-04 11:02:26 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2008-03-04 11:22:04 +0100 |
commit | 0a27ef8be7df518770ae8b5a44f72efc86f280bf (patch) | |
tree | d916c7f94dd3cf80b83a362281d6d99f2c263aee /source3 | |
parent | f58ad2670eeeaa9e85f697568d536b116f988dcb (diff) | |
download | samba-0a27ef8be7df518770ae8b5a44f72efc86f280bf.tar.gz samba-0a27ef8be7df518770ae8b5a44f72efc86f280bf.tar.bz2 samba-0a27ef8be7df518770ae8b5a44f72efc86f280bf.zip |
Fix crash bug in pdb_init_ldapsam().
Karolin, this needs to be in 3-2-stable.
Guenther
(cherry picked from commit 0d73bde6de4391e7aec862424762473441fa0905)
(This used to be commit 4c2d6ce18daf07de7233e3e90bd24fa2a5f9e945)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index ce79dce668..87a648a5b4 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -6264,7 +6264,7 @@ NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location) entry, get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_USER_SID), - NULL); + talloc_tos()); if (domain_sid_string) { bool found_sid; @@ -6300,7 +6300,7 @@ NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location) entry, get_attr_key2string( dominfo_attr_list, LDAP_ATTR_ALGORITHMIC_RID_BASE ), - NULL); + talloc_tos()); if (alg_rid_base_string) { alg_rid_base = (uint32)atol(alg_rid_base_string); if (alg_rid_base != algorithmic_rid_base()) { |