1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-21 01:59:07 +03:00

r23515: Ensure status isn't used uninitialized.

Jeremy.
This commit is contained in:
Jeremy Allison 2007-06-16 00:54:58 +00:00 committed by Gerald (Jerry) Carter
parent 03763bc528
commit 5b2836e2d5

View File

@ -391,7 +391,7 @@ static NTSTATUS expand_groups( TALLOC_CTX *ctx,
char ***members, uint32 *n_members )
{
int i, j;
NTSTATUS status;
NTSTATUS status = NT_STATUS_OK;
uint32 num_names = 0;
uint32 *name_types = NULL;
char **names = NULL;