Changeset 12821 in vbox for trunk/src/VBox/Runtime/common/checksum
- Timestamp:
- Sep 30, 2008 7:30:01 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37177
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/ipv4.cpp
r11313 r12821 108 108 if (RT_UNLIKELY((size_t)pIpHdr->ip_hl * 4 > cbHdrMax)) 109 109 { 110 Assert( pIpHdr->ip_hl * 4 > cbPktMax); /* You'll hit this if you mapped/copy too little of the header! */110 Assert((size_t)pIpHdr->ip_hl * 4 > cbPktMax); /* You'll hit this if you mapped/copy too little of the header! */ 111 111 return false; 112 112 }
Note:
See TracChangeset
for help on using the changeset viewer.