copy the buffer to the right place in IntWriteConsoleOutput
Modified: trunk/reactos/lib/kernel32/misc/console.c
_____
Modified: trunk/reactos/lib/kernel32/misc/console.c
--- trunk/reactos/lib/kernel32/misc/console.c 2005-09-26 11:14:34 UTC
(rev 18086)
+++ trunk/reactos/lib/kernel32/misc/console.c 2005-09-26 11:35:23 UTC
(rev 18087)
@@ -2013,7 +2013,7 @@
(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);
Show replies by date