From b2532c5eb6d23d043590fbf1c51ee7bef699fd11 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Thu, 31 Mar 2011 14:09:45 +0200 Subject: [PATCH] s3-net: Do not use uninitialized value s3-net: Do not use uninitialized value Signed-off-by: Andreas Schneider Autobuild-User: Andreas Schneider Autobuild-Date: Thu Mar 31 18:09:57 CEST 2011 on sn-devel-104 (cherry picked from commit 34ea813553368a7f0805693c9731e9b0abfefa99) --- source3/utils/net_rpc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 3fbeb87f3b1..c86127e3588 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -6737,6 +6737,8 @@ static int rpc_trustdom_list(struct net_context *c, int argc, const char **argv) return -1; }; + b = pipe_hnd->binding_handle; + nt_status = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, false, KEY_QUERY_VALUE, &connect_hnd); if (NT_STATUS_IS_ERR(nt_status)) { -- 2.11.4.GIT