Author: arty
Date: Sun Sep 9 11:39:45 2007
New Revision: 28963
URL:
http://svn.reactos.org/svn/reactos?rev=28963&view=rev
Log:
Fix inverted logic in suspending process. Now this is symmetric with the
corresponding thaw.
Modified:
trunk/reactos/ntoskrnl/dbgk/dbgkutil.c
Modified: trunk/reactos/ntoskrnl/dbgk/dbgkutil.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/dbgk/dbgkutil.c?r…
==============================================================================
--- trunk/reactos/ntoskrnl/dbgk/dbgkutil.c (original)
+++ trunk/reactos/ntoskrnl/dbgk/dbgkutil.c Sun Sep 9 11:39:45 2007
@@ -61,7 +61,7 @@
PAGED_CODE();
/* Make sure this isn't a deleted process */
- if (PsGetCurrentProcess()->ProcessDelete)
+ if (!PsGetCurrentProcess()->ProcessDelete)
{
/* Freeze all the threads */
KeFreezeAllThreads();