mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 19:26:42 +00:00
[NTOS]: Remove checks for VDM alert during GPF. This is a Windows-specific hack for VDM, which isn't implemented.
svn path=/trunk/; revision=45298
This commit is contained in:
@@ -967,14 +967,6 @@ KiTrap0DHandler(IN PKTRAP_FRAME TrapFrame,
|
||||
TrapFrame);
|
||||
}
|
||||
|
||||
/* Check for custom VDM trap handler */
|
||||
if (KeGetPcr()->VdmAlert)
|
||||
{
|
||||
/* Not implemented */
|
||||
UNIMPLEMENTED;
|
||||
while (TRUE);
|
||||
}
|
||||
|
||||
/*
|
||||
* Check for a fault during checking of the user instruction.
|
||||
*
|
||||
@@ -1086,14 +1078,6 @@ KiTrap0EHandler(IN PKTRAP_FRAME TrapFrame)
|
||||
/* Save trap frame */
|
||||
KiEnterTrap(TrapFrame);
|
||||
|
||||
/* Check for custom VDM trap handler */
|
||||
if (KeGetPcr()->VdmAlert)
|
||||
{
|
||||
/* Not implemented */
|
||||
UNIMPLEMENTED;
|
||||
while (TRUE);
|
||||
}
|
||||
|
||||
/* Check if this is the base frame */
|
||||
Thread = KeGetCurrentThread();
|
||||
if (KeGetTrapFrame(Thread) != TrapFrame)
|
||||
|
||||
Reference in New Issue
Block a user