Ignore:
Timestamp:
May 24, 2009, 7:45:16 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/rpc_server/srv_pipe.c

    r206 r222  
    21512151        auth_len = p->hdr.auth_len;
    21522152
    2153         if (auth_len != RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN) {
     2153        if (auth_len < RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN ||
     2154                        auth_len > RPC_HEADER_LEN +
     2155                                        RPC_HDR_REQ_LEN +
     2156                                        RPC_HDR_AUTH_LEN +
     2157                                        auth_len) {
    21542158                DEBUG(0,("Incorrect auth_len %u.\n", (unsigned int)auth_len ));
    21552159                return False;
Note: See TracChangeset for help on using the changeset viewer.