mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
Fix inverted logic in suspending process. Now this is symmetric with the
corresponding thaw. svn path=/trunk/; revision=28963
This commit is contained in:
@@ -61,7 +61,7 @@ DbgkpSuspendProcess(VOID)
|
||||
PAGED_CODE();
|
||||
|
||||
/* Make sure this isn't a deleted process */
|
||||
if (PsGetCurrentProcess()->ProcessDelete)
|
||||
if (!PsGetCurrentProcess()->ProcessDelete)
|
||||
{
|
||||
/* Freeze all the threads */
|
||||
KeFreezeAllThreads();
|
||||
|
||||
Reference in New Issue
Block a user