- 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:
Cameron Gutman
2008-09-13 12:45:26 +00:00
parent e96b8c3c83
commit c875c6ffac
+1 -1
View File
@@ -894,7 +894,7 @@ NdisGetFirstBufferFromPacket(
if (Buffer != NULL) {
*_FirstBufferLength = MmGetMdlByteCount(Buffer);
*_FirstBufferVA = MmGetMdlVirtualAddress(Buffer);
*_FirstBufferVA = MmGetSystemAddressForMdl(Buffer);
Buffer = Buffer->Next;
} else {
*_FirstBufferLength = 0;