mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:55:41 +00:00
- Fix a bug in DbgkOpenHandles which was causing file handles to get lost.
- Process create, thread create and DLL load events are now working perfectly. See http://www.tinykrnl.org/dbgworking.png svn path=/trunk/; revision=24997
This commit is contained in:
parent
5d44e00704
commit
ad0227d2bf
1 changed files with 1 additions and 1 deletions
|
@ -1039,7 +1039,7 @@ DbgkpOpenHandles(IN PDBGUI_WAIT_STATE_CHANGE WaitStateChange,
|
|||
0,
|
||||
DUPLICATE_SAME_ACCESS,
|
||||
KernelMode);
|
||||
if (NT_SUCCESS(Status)) *DupHandle = NULL;
|
||||
if (!NT_SUCCESS(Status)) *DupHandle = NULL;
|
||||
|
||||
/* Close the original handle */
|
||||
ObCloseHandle(Handle, KernelMode);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue