mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
copy the buffer to the right place in IntWriteConsoleOutput
svn path=/trunk/; revision=18087
This commit is contained in:
parent
bbaa62a6a8
commit
5513508495
1 changed files with 1 additions and 1 deletions
|
@ -2013,7 +2013,7 @@ IntWriteConsoleOutput(HANDLE hConsoleOutput,
|
|||
(PVOID*)&Request.Data.WriteConsoleOutputRequest.CharInfo);
|
||||
|
||||
/* Copy from the buffer */
|
||||
RtlCopyMemory(&Request.Data.WriteConsoleOutputRequest.CharInfo, lpBuffer, Size);
|
||||
RtlCopyMemory(Request.Data.WriteConsoleOutputRequest.CharInfo, lpBuffer, Size);
|
||||
|
||||
/* Set up the data to send to the Console Server */
|
||||
CsrRequest = MAKE_CSR_API(WRITE_CONSOLE_OUTPUT, CSR_CONSOLE);
|
||||
|
|
Loading…
Reference in a new issue