summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@sernet.de>2007-12-01 11:43:00 +0100
committerJeremy Allison <jra@samba.org>2007-12-01 10:43:23 -0800
commit4a3ee48de5a4aa4bacb547fa39138d66af6719c2 (patch)
tree457b2f045afef8250868385eafc8231014e6b446
parentf4e4df66e7b7a7ce053ef16a1d4e52e5733aafbf (diff)
downloadsamba-4a3ee48de5a4aa4bacb547fa39138d66af6719c2.tar.gz
samba-4a3ee48de5a4aa4bacb547fa39138d66af6719c2.tar.bz2
samba-4a3ee48de5a4aa4bacb547fa39138d66af6719c2.zip
Fix an uninitialized variable
(This used to be commit edce7bd7a9dd1064ba8aec34b334c7395228f40b)
-rw-r--r--source3/libsmb/libsmbclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c
index 26ff339a1a..b654ea07f0 100644
--- a/source3/libsmb/libsmbclient.c
+++ b/source3/libsmb/libsmbclient.c
@@ -4172,7 +4172,7 @@ convert_string_to_sid(struct cli_state *ipc_cli,
enum lsa_SidType *types = NULL;
DOM_SID *sids = NULL;
bool result = True;
- TALLOC_CTX *ctx;
+ TALLOC_CTX *ctx = NULL;
struct rpc_pipe_client *pipe_hnd = find_lsa_pipe_hnd(ipc_cli);
if (!pipe_hnd) {