mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:52:57 +00:00
Changed Context to PC(NdisPacket)->Context in DLComplete call in
LoopTransmit. We were passing the wrong context (our own) when we should have passed the client's context. Silly bug made possible by use of void *. svn path=/trunk/; revision=11782
This commit is contained in:
parent
e4b1bafb21
commit
ce8fea9728
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ VOID LoopTransmit(
|
||||||
TI_DbgPrint(MAX_TRACE,
|
TI_DbgPrint(MAX_TRACE,
|
||||||
("Finished receive (complete: %x, context %x, packet %x)\n",
|
("Finished receive (complete: %x, context %x, packet %x)\n",
|
||||||
PC(NdisPacket)->DLComplete, Context, NdisPacket));
|
PC(NdisPacket)->DLComplete, Context, NdisPacket));
|
||||||
PC(NdisPacket)->DLComplete(Context, NdisPacket, NDIS_STATUS_SUCCESS);
|
PC(NdisPacket)->DLComplete(PC(NdisPacket)->Context, NdisPacket, NDIS_STATUS_SUCCESS);
|
||||||
TI_DbgPrint(MAX_TRACE, ("Done\n"));
|
TI_DbgPrint(MAX_TRACE, ("Done\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue