Ignore:
Timestamp:
Sep 16, 2010, 10:06:10 AM (15 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.14 (security update)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/lib/util_sid.c

    r206 r491  
    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.