Prevent double output

svn path=/trunk/; revision=6250
This commit is contained in:
Gé van Geldorp 2003-10-06 16:24:20 +00:00
parent 2f9834a4b1
commit 307c3b1526

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: bug.c,v 1.38 2003/08/27 21:28:08 dwelch Exp $
/* $Id: bug.c,v 1.39 2003/10/06 16:24:20 gvg Exp $
*
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/bug.c
@ -183,7 +183,10 @@ KeBugCheckEx(ULONG BugCheckCode,
/* Make sure we're switching back to the blue screen and print messages on it */
HalReleaseDisplayOwnership();
KdDebugState |= KD_DEBUG_SCREEN;
if (0 == (KdDebugState & KD_DEBUG_GDB))
{
KdDebugState |= KD_DEBUG_SCREEN;
}
__asm__("cli\n\t");
if (KeGetCurrentIrql() < DISPATCH_LEVEL)