Ignore:
Timestamp:
Jan 15, 2010, 8:23:30 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.10 (source)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/winbindd/winbindd_rpc.c

    r342 r370  
    788788                return result;
    789789
    790         *num_names = rids->count;
    791         rid_mem = rids->rids;
    792 
    793         if (!*num_names) {
     790        if (!rids || !rids->count) {
    794791                names = NULL;
    795792                name_types = NULL;
     
    797794                return NT_STATUS_OK;
    798795        }
     796
     797        *num_names = rids->count;
     798        rid_mem = rids->rids;
    799799
    800800        /* Step #2: Convert list of rids into list of usernames.  Do this
Note: See TracChangeset for help on using the changeset viewer.