1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

s3-idmap: fix uninitialized variable in idmap_tdb_sids_to_unixids_action().

Michael, please check.

Guenther
This commit is contained in:
Günther Deschner
2010-08-19 14:01:47 +02:00
parent 4fec72db1c
commit 28ba023b4c

View File

@ -848,7 +848,7 @@ static NTSTATUS idmap_tdb_sids_to_unixids_action(struct db_context *db,
{
struct idmap_tdb_sids_to_unixids_context *state;
int i;
NTSTATUS ret;
NTSTATUS ret = NT_STATUS_OK;
state = (struct idmap_tdb_sids_to_unixids_context *)private_data;