From 1bcd91366d582f4ba99ab64e99d057a4c3f94daf Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Mon, 1 Dec 2008 21:56:59 -0800 Subject: s3: Fix 'ctx' might be used unitialized warnings --- source3/winbindd/idmap_ad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/idmap_ad.c b/source3/winbindd/idmap_ad.c index 05d7d98cae..b22e5af94a 100644 --- a/source3/winbindd/idmap_ad.c +++ b/source3/winbindd/idmap_ad.c @@ -933,7 +933,7 @@ static NTSTATUS nss_ad_map_to_alias(TALLOC_CTX *mem_ctx, ADS_STATUS ads_status = ADS_ERROR_NT(NT_STATUS_UNSUCCESSFUL); NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; struct idmap_domain *dom; - struct idmap_ad_context *ctx; + struct idmap_ad_context *ctx = NULL; /* Check incoming parameters */ @@ -1013,7 +1013,7 @@ static NTSTATUS nss_ad_map_from_alias( TALLOC_CTX *mem_ctx, NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; char *username; struct idmap_domain *dom; - struct idmap_ad_context *ctx; + struct idmap_ad_context *ctx = NULL; /* Check incoming parameters */ -- cgit