[ros-diffs] [sginsberg] 37287: - Clear the flag before bugchecking

sginsberg at svn.reactos.org sginsberg at svn.reactos.org
Tue Nov 11 14:23:15 CET 2008


Author: sginsberg
Date: Tue Nov 11 07:23:14 2008
New Revision: 37287

URL: http://svn.reactos.org/svn/reactos?rev=37287&view=rev
Log:
- Clear the flag before bugchecking

Modified:
    trunk/reactos/ntoskrnl/kdbg/kdb.c

Modified: trunk/reactos/ntoskrnl/kdbg/kdb.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kdbg/kdb.c?rev=37287&r1=37286&r2=37287&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/kdbg/kdb.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/kdbg/kdb.c [iso-8859-1] Tue Nov 11 07:23:14 2008
@@ -1605,7 +1605,8 @@
    /* Check if user requested a bugcheck */
    if (KdbpBugCheckRequested)
    {
-       /* Bugcheck the system */
+       /* Clear the flag and bugcheck the system */
+       KdbpBugCheckRequested = FALSE;
        KeBugCheck(MANUALLY_INITIATED_CRASH);
    }
 



More information about the Ros-diffs mailing list