1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

ctdb: Fix the O3 developer build

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Fri Nov 13 12:42:22 CET 2015 on sn-devel-104
This commit is contained in:
Volker Lendecke 2015-11-07 20:18:32 +01:00
parent f9b92cfea6
commit 0aca421136
2 changed files with 3 additions and 2 deletions

View File

@ -800,7 +800,7 @@ static int ctdb_req_control_data_pull(uint8_t *buf, size_t buflen,
struct ctdb_req_control_data *cd)
{
int ret = 0;
uint64_t u64;
uint64_t u64 = 0;
cd->opcode = opcode;

View File

@ -247,7 +247,8 @@ static void socket_process_client(struct tevent_req *subreq)
subreq, struct tevent_req);
struct socket_process_state *state = tevent_req_data(
req, struct socket_process_state);
int client_fd, err;
int client_fd;
int err = 0;
client_fd = accept_recv(subreq, &err);
TALLOC_FREE(subreq);