1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-08 13:49:29 +03:00

Make rpc_read() match the control flow normally used in Samba

Replace do { .. } while () with a while () { .. }
This commit is contained in:
Volker Lendecke
2009-01-14 16:43:37 +01:00
parent 11e3388083
commit e1aeb486e8

View File

@ -267,26 +267,27 @@ static NTSTATUS rpc_read(struct rpc_pipe_client *cli,
pdata = prs_data_p(current_pdu) + current_pdu_offset;
do {
while (num_read < size) {
ssize_t thistime = 0;
NTSTATUS status;
switch (cli->transport_type) {
case NCACN_NP:
status = rpc_read_np(cli->trans.np.cli,
cli->trans.np.pipe_name,
cli->trans.np.fnum, pdata,
size, &num_read);
cli->trans.np.fnum,
pdata + num_read,
size - num_read, &thistime);
break;
case NCACN_IP_TCP:
case NCACN_UNIX_STREAM:
status = NT_STATUS_OK;
num_read = sys_read(cli->trans.sock.fd, pdata, size);
if (num_read == -1) {
thistime = sys_read(cli->trans.sock.fd,
pdata + num_read,
size - num_read);
if (thistime == -1) {
status = map_nt_error_from_unix(errno);
}
if (num_read == 0) {
status = NT_STATUS_END_OF_FILE;
}
break;
default:
DEBUG(0, ("unknown transport type %d\n",
@ -294,11 +295,17 @@ static NTSTATUS rpc_read(struct rpc_pipe_client *cli,
return NT_STATUS_INTERNAL_ERROR;
}
size -= num_read;
pdata += num_read;
if (thistime == 0) {
status = NT_STATUS_END_OF_FILE;
}
} while (num_read > 0 && size > 0);
/* && err == (0x80000000 | STATUS_BUFFER_OVERFLOW)); */
if (!NT_STATUS_IS_OK(status)) {
return status;
}
num_read += thistime;
}
return NT_STATUS_OK;
}