mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
lib: Fix CID 1327227 Uninitialized scalar variable
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
8eedd5c48b
commit
826bffc7e6
@ -852,7 +852,7 @@ static NTSTATUS db_ctdb_store(struct db_record *rec, TDB_DATA data, int flag)
|
||||
|
||||
static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
|
||||
{
|
||||
NTSTATUS status;
|
||||
NTSTATUS status = NT_STATUS_OK;
|
||||
int ret;
|
||||
struct ctdb_control_schedule_for_deletion *dd;
|
||||
TDB_DATA indata;
|
||||
@ -888,6 +888,8 @@ static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
|
||||
"SCHEDULE_FOR_DELETION: %s, cstatus = %d\n",
|
||||
strerror(ret), cstatus));
|
||||
if (ret != 0) {
|
||||
status = map_nt_error_from_unix(ret);
|
||||
} else {
|
||||
status = NT_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user