Lower the irql on exit in KeInsertQueueDpc.
Modified: trunk/reactos/ntoskrnl/ke/dpc.c
_____
Modified: trunk/reactos/ntoskrnl/ke/dpc.c
--- trunk/reactos/ntoskrnl/ke/dpc.c 2006-01-15 08:51:20 UTC (rev
20884)
+++ trunk/reactos/ntoskrnl/ke/dpc.c 2006-01-15 08:53:01 UTC (rev
20885)
@@ -179,8 +179,8 @@
/* Check if this is a Thread DPC, which we don't support (yet) */
if (Dpc->Type == ThreadedDpcObject) {
+ KeLowerIrql(OldIrql);
return FALSE;
- KeLowerIrql(OldIrql);
}
#ifdef CONFIG_SMP