[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? ;-)

svn path=/trunk/; revision=49031
This commit is contained in:
Sir Richard
2010-10-07 13:52:42 +00:00
parent b973ba44ac
commit 538c2dfa33
+2 -2
View File
@@ -1431,8 +1431,8 @@ KeBugCheckEx(IN ULONG BugCheckCode,
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,