Changeset 75169 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/win/drv
- Timestamp:
- Oct 30, 2018 6:29:31 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/drv/VBoxNetLwf-win.cpp
r75122 r75169 1633 1633 } 1634 1634 1635 if (cbSrc > cbPacket) 1636 cbSrc = cbPacket; 1637 1635 /* Handle the offset in the current (which is the first for us) MDL */ 1638 1636 if (uOffset) 1639 1637 { … … 1646 1644 else 1647 1645 { 1648 uOffset -= cbSrc; 1649 continue; 1646 /* This is an invalid MDL chain */ 1647 vboxNetLwfWinDestroySG(pSG); 1648 return NULL; 1650 1649 } 1651 1650 } 1651 1652 /* Do not read the last MDL beyond packet's end */ 1653 if (cbSrc > cbPacket) 1654 cbSrc = cbPacket; 1652 1655 1653 1656 Assert(cSegs < pSG->cSegsAlloc);
Note:
See TracChangeset
for help on using the changeset viewer.