Author: sir_richard
Date: Thu Oct 7 13:52:42 2010
New Revision: 49031
URL: http://svn.reactos.org/svn/reactos?rev=49031&view=rev
Log:
[NTOS]: My attempt at making bugchecks a thing of the past has failed, someone
has caught the typo. Bugchecks will now happen in ReactOS again instead of
being ignored. Maybe you can "forget" to merge this one with the release
branch? ;-)
Modified:
trunk/reactos/ntoskrnl/ke/bug.c
Modified: trunk/reactos/ntoskrnl/ke/bug.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/bug.c?rev=49031&r1=49030&r2=49031&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/ke/bug.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/bug.c [iso-8859-1] Thu Oct 7 13:52:42 2010
@@ -1431,8 +1431,8 @@
IN ULONG_PTR BugCheckParameter4)
{
/* Workaround for Windows Server 2003 Checked PCI Driver issue */
- if (!(BugCheckCode == PCI_BUS_DRIVER_INTERNAL) &&
- (BugCheckParameter1 == 0xDEAD0010))
+ if (!((BugCheckCode == PCI_BUS_DRIVER_INTERNAL) &&
+ (BugCheckParameter1 == 0xDEAD0010)))
{
/* Call the internal API */
KeBugCheckWithTf(BugCheckCode,