Changeset 370 for branches/samba-3.3.x/source/winbindd/winbindd_rpc.c
- Timestamp:
- Jan 15, 2010, 8:23:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/winbindd/winbindd_rpc.c
r342 r370 788 788 return result; 789 789 790 *num_names = rids->count; 791 rid_mem = rids->rids; 792 793 if (!*num_names) { 790 if (!rids || !rids->count) { 794 791 names = NULL; 795 792 name_types = NULL; … … 797 794 return NT_STATUS_OK; 798 795 } 796 797 *num_names = rids->count; 798 rid_mem = rids->rids; 799 799 800 800 /* Step #2: Convert list of rids into list of usernames. Do this
Note:
See TracChangeset
for help on using the changeset viewer.