Changeset 35351 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Dec 27, 2010 5:04:17 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69211
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/manifest-file.cpp
r34381 r35351 83 83 } 84 84 85 -
trunk/src/VBox/Runtime/common/checksum/manifest3.cpp
r34537 r35351 549 549 } 550 550 551 552 -
trunk/src/VBox/Runtime/common/zip/tar.cpp
r35122 r35351 229 229 { 230 230 int64_t cbSize = 0; 231 231 if (pRecord->h.size[0] & 0x80) 232 232 { 233 233 size_t cchField = sizeof(pRecord->h.size); 234 234 unsigned char const *puchField = (unsigned char const *)pRecord->h.size; 235 235 236 /* 236 237 * The first byte has the bit 7 set to indicate base-256, while bit 6 … … 241 242 cchField--; 242 243 puchField++; 244 243 245 /* 244 246 * The remaining bytes are used in full. … … 254 256 cbSize = (cbSize << 8) | *puchField++; 255 257 } 256 }else 258 } 259 else 257 260 RTStrToInt64Full(pRecord->h.size, 8, &cbSize); 258 261 -
trunk/src/VBox/Runtime/common/zip/tarcmd.cpp
r34179 r35351 668 668 } 669 669 670 -
trunk/src/VBox/Runtime/testcase/tstRTThreadPoke.cpp
r34174 r35351 78 78 } 79 79 80
Note:
See TracChangeset
for help on using the changeset viewer.