From 08a7ee8d968b493a17fd669f3dc6fed7abe3d36e Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Mon, 7 May 2007 10:14:32 +0000 Subject: [PATCH] r22737: Fix crash bug (info3 is now talloced). Guenther --- source/nsswitch/winbindd_ads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nsswitch/winbindd_ads.c b/source/nsswitch/winbindd_ads.c index 76d12229d96..9c96496261f 100644 --- a/source/nsswitch/winbindd_ads.c +++ b/source/nsswitch/winbindd_ads.c @@ -487,7 +487,7 @@ static NTSTATUS query_user(struct winbindd_domain *domain, &info->homedir, &info->shell, &info->full_name, &info->primary_gid ); - SAFE_FREE(user); + TALLOC_FREE(user); return NT_STATUS_OK; } -- 2.11.4.GIT