Ignore:
Timestamp:
May 12, 2014, 8:58:38 PM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.6: updated vendor to latest version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/nsswitch/libwbclient/wbc_sid.c

    r740 r860  
    422422
    423423                names[i].domain_index = strtoul(p, &q, 10);
     424                if (names[i].domain_index < 0) {
     425                        goto wbc_err_invalid;
     426                }
     427                if (names[i].domain_index >= num_domains) {
     428                        goto wbc_err_invalid;
     429                }
     430
    424431                if (*q != ' ') {
    425432                        goto wbc_err_invalid;
Note: See TracChangeset for help on using the changeset viewer.