mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Hints from MSDN show that we should use MmGetSystemAddressForMdl instead of MmGetMdlVirtualAddress
svn path=/branches/aicom-network-fixes/; revision=36186
This commit is contained in:
@@ -894,7 +894,7 @@ NdisGetFirstBufferFromPacket(
|
||||
|
||||
if (Buffer != NULL) {
|
||||
*_FirstBufferLength = MmGetMdlByteCount(Buffer);
|
||||
*_FirstBufferVA = MmGetMdlVirtualAddress(Buffer);
|
||||
*_FirstBufferVA = MmGetSystemAddressForMdl(Buffer);
|
||||
Buffer = Buffer->Next;
|
||||
} else {
|
||||
*_FirstBufferLength = 0;
|
||||
|
||||
Reference in New Issue
Block a user