summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2008-12-01 21:56:59 -0800
committerTim Prouty <tprouty@samba.org>2008-12-01 21:59:00 -0800
commit1bcd91366d582f4ba99ab64e99d057a4c3f94daf (patch)
treea15dbd1dc2b99ddbbe3f4579c6f8cf1393b27513 /source3/winbindd
parent6c298c06f35c132dfd6df854e8fac524e4c80376 (diff)
downloadsamba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.tar.gz
samba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.tar.bz2
samba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.zip
s3: Fix 'ctx' might be used unitialized warnings
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/idmap_ad.c4
1 files changed, 2 insertions, 2 deletions
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 */