mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
- Fix NdisMSynchronizeWithInterrupt.
svn path=/trunk/; revision=11310
This commit is contained in:
parent
6815a62066
commit
fdfdfbe2d2
1 changed files with 2 additions and 2 deletions
|
@ -167,7 +167,7 @@ MiniIndicateData(
|
|||
* subsequently re-acquire the lock.
|
||||
*
|
||||
* I don't see how this does any good, as it would seem he's just
|
||||
* trying to protect the packet list. If someobdy else dequeues
|
||||
* trying to protect the packet list. If somebody else dequeues
|
||||
* a packet, we are in fact in bad shape, but we don't want to
|
||||
* necessarily call the receive handler at elevated irql either.
|
||||
*
|
||||
|
@ -1901,7 +1901,7 @@ NdisMSynchronizeWithInterrupt(
|
|||
IN PVOID SynchronizeFunction,
|
||||
IN PVOID SynchronizeContext)
|
||||
{
|
||||
return(KeSynchronizeExecution((PKINTERRUPT)Interrupt,
|
||||
return(KeSynchronizeExecution(Interrupt->InterruptObject,
|
||||
(PKSYNCHRONIZE_ROUTINE)SynchronizeFunction,
|
||||
SynchronizeContext));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue