mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Send the pointer to the handle, not the NULL handle itself. This fixes another winetest bugcheck.
svn path=/trunk/; revision=17226
This commit is contained in:
@@ -705,7 +705,7 @@ NtOpenThread(OUT PHANDLE ThreadHandle,
|
||||
PreviousMode,
|
||||
DesiredAccess,
|
||||
NULL,
|
||||
hThread);
|
||||
&hThread);
|
||||
|
||||
if (Status != STATUS_SUCCESS)
|
||||
{
|
||||
@@ -747,7 +747,7 @@ NtOpenThread(OUT PHANDLE ThreadHandle,
|
||||
DesiredAccess,
|
||||
PsThreadType,
|
||||
PreviousMode,
|
||||
hThread);
|
||||
&hThread);
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failure to open Thread\n");
|
||||
|
||||
Reference in New Issue
Block a user