mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
- Fix handling of METHOD_IN_DIRECT IRPs.
svn path=/trunk/; revision=10251
This commit is contained in:
parent
0b05c8aa29
commit
46e6b49f21
1 changed files with 9 additions and 9 deletions
|
@ -300,10 +300,10 @@ WriteConsoleOutputCharacters(LPCSTR lpCharacter,
|
|||
NULL,
|
||||
&IoStatusBlock,
|
||||
IOCTL_CONSOLE_WRITE_OUTPUT_CHARACTER,
|
||||
Buffer,
|
||||
nLength + sizeof(COORD),
|
||||
NULL,
|
||||
0);
|
||||
0,
|
||||
Buffer,
|
||||
nLength + sizeof(COORD));
|
||||
|
||||
RtlFreeHeap(ProcessHeap,
|
||||
0,
|
||||
|
@ -344,10 +344,10 @@ WriteConsoleOutputCharactersW(LPCWSTR lpCharacter,
|
|||
NULL,
|
||||
&IoStatusBlock,
|
||||
IOCTL_CONSOLE_WRITE_OUTPUT_CHARACTER,
|
||||
Buffer,
|
||||
nLength + sizeof(COORD),
|
||||
NULL,
|
||||
0);
|
||||
0,
|
||||
Buffer,
|
||||
nLength + sizeof(COORD));
|
||||
|
||||
RtlFreeHeap(ProcessHeap,
|
||||
0,
|
||||
|
@ -384,10 +384,10 @@ WriteConsoleOutputAttributes(CONST USHORT *lpAttribute,
|
|||
NULL,
|
||||
&IoStatusBlock,
|
||||
IOCTL_CONSOLE_WRITE_OUTPUT_ATTRIBUTE,
|
||||
Buffer,
|
||||
nLength * sizeof(USHORT) + sizeof(COORD),
|
||||
NULL,
|
||||
0);
|
||||
0,
|
||||
Buffer,
|
||||
nLength * sizeof(USHORT) + sizeof(COORD));
|
||||
|
||||
RtlFreeHeap(ProcessHeap,
|
||||
0,
|
||||
|
|
Loading…
Reference in a new issue