mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user