- 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:
Alex Ionescu 2006-11-30 09:30:07 +00:00
parent cca4a71164
commit 3b4c74ae10

View file

@ -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) &&