From 6dab835fbb981b0bb1bac68407fd29fa3a18a53a Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 16 Sep 2009 10:14:05 +0200 Subject: s3-rpcclient: Fix Coverity #935: UNINIT. Guenther --- source3/rpcclient/cmd_lsarpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index b660cfad25..752881c221 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -1731,7 +1731,7 @@ static NTSTATUS cmd_lsa_retrieve_private_data(struct rpc_pipe_client *cli, struct lsa_String name; struct lsa_DATA_BUF *val; DATA_BLOB session_key; - DATA_BLOB blob; + DATA_BLOB blob = data_blob_null; char *secret; if (argc < 2) { -- cgit