mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
- Client IDs were OK, I incorrectly assumed they weren't due to the concidence they were equal to the thead/process handles. Actual bug was NtDebugContinue not accepting a valid status value. This is fixed now.
svn path=/trunk/; revision=24987
This commit is contained in:
parent
cca4a71164
commit
3b4c74ae10
1 changed files with 2 additions and 1 deletions
|
@ -1517,7 +1517,8 @@ NtDebugContinue(IN HANDLE DebugHandle,
|
|||
}
|
||||
|
||||
/* Make sure that the status is valid */
|
||||
if ((ContinueStatus != DBG_EXCEPTION_NOT_HANDLED) &&
|
||||
if ((ContinueStatus != DBG_CONTINUE) &&
|
||||
(ContinueStatus != DBG_EXCEPTION_NOT_HANDLED) &&
|
||||
(ContinueStatus != DBG_REPLY_LATER) &&
|
||||
(ContinueStatus != DBG_UNABLE_TO_PROVIDE_HANDLE) &&
|
||||
(ContinueStatus != DBG_TERMINATE_THREAD) &&
|
||||
|
|
Loading…
Reference in a new issue