copy the buffer to the right place in IntWriteConsoleOutput

svn path=/trunk/; revision=18087
This commit is contained in:
Thomas Bluemel 2005-09-26 11:35:23 +00:00
parent bbaa62a6a8
commit 5513508495

View file

@ -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);