Ignore:
Timestamp:
Jun 28, 2011, 10:17:44 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/lib/util_sid.c

    r414 r583  
    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.