Changeset 140 for branches/samba-3.0/source/rpc_client
- Timestamp:
- Jul 11, 2008, 1:13:42 AM (17 years ago)
- Location:
- branches/samba-3.0/source/rpc_client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/rpc_client/cli_netlogon.c
r134 r140 186 186 result = r.status; 187 187 188 *neg_flags_inout = r.srv_flgs.neg_flags; 189 188 190 if (NT_STATUS_IS_OK(result)) { 189 191 *srv_chal_out = r.srv_chal; 190 *neg_flags_inout = r.srv_flgs.neg_flags;191 192 } 192 193 -
branches/samba-3.0/source/rpc_client/cli_pipe.c
r134 r140 447 447 } 448 448 449 if (prhdr->auth_len + RPC_HDR_AUTH_LEN < prhdr->auth_len ||450 prhdr->auth_len + RPC_HDR_AUTH_LEN <RPC_HDR_AUTH_LEN) {449 if (prhdr->auth_len + (unsigned int)RPC_HDR_AUTH_LEN < prhdr->auth_len || 450 prhdr->auth_len + (unsigned int)RPC_HDR_AUTH_LEN < (unsigned int)RPC_HDR_AUTH_LEN) { 451 451 /* Integer wrap attempt. */ 452 452 return NT_STATUS_INVALID_PARAMETER;
Note:
See TracChangeset
for help on using the changeset viewer.