diff options
author | Jeremy Allison <jra@samba.org> | 2002-12-02 23:51:53 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-12-02 23:51:53 +0000 |
commit | 1c8e1e04480c5c050a0112ac70f3e66fab80ebba (patch) | |
tree | c470d8d470038421f3a765d0b08222e1101565a2 | |
parent | aef4047b24380133c018e374dcb87c098eb18361 (diff) | |
download | samba-1c8e1e04480c5c050a0112ac70f3e66fab80ebba.tar.gz samba-1c8e1e04480c5c050a0112ac70f3e66fab80ebba.tar.bz2 samba-1c8e1e04480c5c050a0112ac70f3e66fab80ebba.zip |
Ensure callid is not used uninitialized.
Jeremy.
(This used to be commit ddd70995951c072a02fc3bddd7a94ccbf301f62c)
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |