diff options
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap_tdb.c b/source3/winbindd/idmap_tdb.c index 8bb615d8f8..605bc59328 100644 --- a/source3/winbindd/idmap_tdb.c +++ b/source3/winbindd/idmap_tdb.c @@ -484,7 +484,7 @@ static NTSTATUS idmap_tdb_db_init(struct idmap_domain *dom, const char *params) DEBUG(10, ("idmap_tdb_db_init called for domain '%s'\n", dom->name)); - ctx = talloc(dom, struct idmap_tdb_context); + ctx = talloc_zero(dom, struct idmap_tdb_context); if ( ! ctx) { DEBUG(0, ("Out of memory!\n")); return NT_STATUS_NO_MEMORY; |