mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added missing pending check (pointed out by filip).
svn path=/trunk/; revision=12198
This commit is contained in:
parent
2fa970d484
commit
91bbf4471d
1 changed files with 5 additions and 3 deletions
|
@ -841,9 +841,11 @@ VOID STDCALL MiniportDpc(
|
|||
|
||||
NDIS_DbgPrint(MAX_TRACE, ("back from miniport's Send handler\n"));
|
||||
}
|
||||
NdisMSendComplete
|
||||
( Adapter, (PNDIS_PACKET)WorkItemContext, NdisStatus );
|
||||
Adapter->MiniportBusy = FALSE;
|
||||
if( NdisStatus == NDIS_STATUS_PENDING ) {
|
||||
NdisMSendComplete
|
||||
( Adapter, (PNDIS_PACKET)WorkItemContext, NdisStatus );
|
||||
Adapter->MiniportBusy = FALSE;
|
||||
}
|
||||
break;
|
||||
|
||||
case NdisWorkItemSendLoopback:
|
||||
|
|
Loading…
Reference in a new issue