mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
copy the buffer to the right place in IntWriteConsoleOutput
svn path=/trunk/; revision=18087
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user