mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Fix bug 474. Patch by tinus
svn path=/trunk/; revision=13266
This commit is contained in:
parent
ce861ca908
commit
dcee180336
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ KeConnectInterrupt(PKINTERRUPT InterruptObject)
|
|||
|
||||
Vector = InterruptObject->Vector;
|
||||
|
||||
if (Vector < IRQ_BASE && Vector >= IRQ_BASE + NR_IRQS)
|
||||
if (Vector < IRQ_BASE || Vector >= IRQ_BASE + NR_IRQS)
|
||||
return FALSE;
|
||||
|
||||
Vector -= IRQ_BASE;
|
||||
|
|
Loading…
Reference in a new issue