diff options
author | Volker Lendecke <vl@samba.org> | 2009-12-24 12:56:09 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-12-26 12:26:07 +0100 |
commit | 7e66145560247168e4879127d46dc13a64b19105 (patch) | |
tree | 7e900f04833e15460712688d51795dcfd0e8bfb1 /source3 | |
parent | 634d084517652a053587a2f13825a49a67460f12 (diff) | |
download | samba-7e66145560247168e4879127d46dc13a64b19105.tar.gz samba-7e66145560247168e4879127d46dc13a64b19105.tar.bz2 samba-7e66145560247168e4879127d46dc13a64b19105.zip |
s3: Fix a bogus uninitialized variable warning
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_rpc.c b/source3/winbindd/winbindd_rpc.c index 1018a2952b..b802021f08 100644 --- a/source3/winbindd/winbindd_rpc.c +++ b/source3/winbindd/winbindd_rpc.c @@ -1258,7 +1258,7 @@ NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx, NTSTATUS status; struct rpc_pipe_client *cli = NULL; struct policy_handle lsa_policy; - unsigned int orig_timeout; + unsigned int orig_timeout = 0; lookup_names_fn_t lookup_names_fn = rpccli_lsa_lookup_names; if (domain->can_do_ncacn_ip_tcp) { |