mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fix HEAD compilation.
LPC_MESSAGE.DataSize ==> PORT_MESSAGE.u1.s1.DataLength LPC_MESSAGE.MessageSize ==> PORT.u1.s1.TotalLength svn path=/trunk/; revision=17282
This commit is contained in:
parent
f83c14b3fc
commit
0a7659bfce
1 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@ CsrNotify(PCSR_API_MESSAGE Request)
|
|||
return STATUS_INVALID_PORT_HANDLE;
|
||||
}
|
||||
|
||||
Request->Header.DataSize = sizeof(CSR_API_MESSAGE) - LPC_MESSAGE_BASE_SIZE;
|
||||
Request->Header.MessageSize = sizeof(CSR_API_MESSAGE);
|
||||
Request->Header.u1.s1.DataLength = sizeof(CSR_API_MESSAGE) - LPC_MESSAGE_BASE_SIZE;
|
||||
Request->Header.u1.s1.TotalLength = sizeof(CSR_API_MESSAGE);
|
||||
|
||||
/* Switch to the process in which the WindowsApiPort handle is valid */
|
||||
OldProcess = PsGetCurrentProcess();
|
||||
|
|
Loading…
Reference in a new issue