1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00

r14983: fix an uninitialised var

This commit is contained in:
Andrew Tridgell 2006-04-08 03:00:12 +00:00 committed by Gerald (Jerry) Carter
parent 3b66cf35a7
commit 58ac1e4eb1

View File

@ -239,7 +239,7 @@ static NTSTATUS samsync_ldb_handle_user(TALLOC_CTX *mem_ctx,
const struct dom_sid *user_sid;
struct ldb_message *msg;
struct ldb_message **msgs;
struct ldb_message **remote_msgs;
struct ldb_message **remote_msgs = NULL;
int ret, i;
uint32_t acb;
BOOL add = False;