mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +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:
@@ -47,7 +47,7 @@ VOID LoopTransmit(
|
||||
TI_DbgPrint(MAX_TRACE,
|
||||
("Finished receive (complete: %x, context %x, packet %x)\n",
|
||||
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"));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user