Ignore:
Timestamp:
May 27, 2009, 11:39:15 AM (17 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.9

File:
1 edited

Legend:

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

    r133 r233  
    21022102        auth_len = p->hdr.auth_len;
    21032103
    2104         if (auth_len != RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN) {
     2104        if (auth_len < RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN ||
     2105                        auth_len > RPC_HEADER_LEN +
     2106                                        RPC_HDR_REQ_LEN +
     2107                                        RPC_HDR_AUTH_LEN +
     2108                                        auth_len) {
    21052109                DEBUG(0,("Incorrect auth_len %u.\n", (unsigned int)auth_len ));
    21062110                return False;
Note: See TracChangeset for help on using the changeset viewer.