Ignore:
Timestamp:
Jun 28, 2011, 9:27:20 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified vendor/current/source3/lib/util_sid.c

    r414 r581  
    409409        sid->sid_rev_num = CVAL(inbuf, 0);
    410410        sid->num_auths = CVAL(inbuf, 1);
     411        if (sid->num_auths > MAXSUBAUTHS) {
     412                return false;
     413        }
    411414        memcpy(sid->id_auth, inbuf+2, 6);
    412415        if (len < 8 + sid->num_auths*4)
Note: See TracChangeset for help on using the changeset viewer.