1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-07 09:49:30 +03:00

r12129: Fix uninitialized variables.

Volker
(This used to be commit 8a7d6eb2c0)
This commit is contained in:
Volker Lendecke
2005-12-08 15:34:38 +00:00
committed by Gerald (Jerry) Carter
parent 7bf8de2f02
commit ab51c18cc9
2 changed files with 4 additions and 1 deletions

View File

@ -678,6 +678,9 @@ static int net_groupmap_listmem(int argc, const char **argv)
return -1;
}
members = NULL;
num = 0;
if (!pdb_enum_aliasmem(&alias, &members, &num)) {
d_printf("Could not list members for sid %s\n", argv[0]);
return -1;