diff options
author | Tim Prouty <tprouty@samba.org> | 2008-12-01 21:56:59 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-12-01 21:59:00 -0800 |
commit | 1bcd91366d582f4ba99ab64e99d057a4c3f94daf (patch) | |
tree | a15dbd1dc2b99ddbbe3f4579c6f8cf1393b27513 /source3 | |
parent | 6c298c06f35c132dfd6df854e8fac524e4c80376 (diff) | |
download | samba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.tar.gz samba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.tar.xz samba-1bcd91366d582f4ba99ab64e99d057a4c3f94daf.zip |
s3: Fix 'ctx' might be used unitialized warnings
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/idmap_ad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/idmap_ad.c b/source3/winbindd/idmap_ad.c index 05d7d98cae9..b22e5af94ae 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 */ |