From 1c8e1e04480c5c050a0112ac70f3e66fab80ebba Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 2 Dec 2002 23:51:53 +0000 Subject: Ensure callid is not used uninitialized. Jeremy. (This used to be commit ddd70995951c072a02fc3bddd7a94ccbf301f62c) --- source3/rpc_client/cli_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 90f08148ef..4da0233934 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -844,7 +844,7 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num, uint32 data_len, send_size; uint8 flags = 0; uint32 crc32 = 0; - uint32 callid; + uint32 callid = 0; /* * how much will we send this time -- cgit