Changeset 84630 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jun 1, 2020 8:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp
r84629 r84630 111 111 size_t offPktBuf; 112 112 /** The size of the packet (minus the start, end characters and the checksum). */ 113 uint32_tcbPkt;113 size_t cbPkt; 114 114 /** Pointer to the packet buffer data. */ 115 115 uint8_t *pbPktBuf; … … 1873 1873 1874 1874 uint8_t uSum = 0; 1875 for ( uint32_t i = 1; i < pThis->cbPkt; i++)1875 for (size_t i = 1; i < pThis->cbPkt; i++) 1876 1876 uSum += pThis->pbPktBuf[i]; 1877 1877
Note:
See TracChangeset
for help on using the changeset viewer.