Author: khornicek
Date: Thu Oct  7 14:07:45 2010
New Revision: 49032

URL: http://svn.reactos.org/svn/reactos?rev=49032&view=rev
Log:
Don't deny people their bugchecks. Merge r49031.

Modified:
    branches/ros-branch-0_3_12/reactos/ntoskrnl/ke/bug.c

Modified: branches/ros-branch-0_3_12/reactos/ntoskrnl/ke/bug.c
URL: 
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_12/reactos/ntoskrnl/ke/bug.c?rev=49032&r1=49031&r2=49032&view=diff
==============================================================================
--- branches/ros-branch-0_3_12/reactos/ntoskrnl/ke/bug.c [iso-8859-1] (original)
+++ branches/ros-branch-0_3_12/reactos/ntoskrnl/ke/bug.c [iso-8859-1] Thu Oct  
7 14:07:45 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,


Reply via email to