- Timestamp:
- May 25, 2020 10:40:28 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/tracelogreader.cpp
r82968 r84491 1061 1061 if (pThis->cbTypeSize == 4) 1062 1062 { 1063 cb = RT_BSWAP_U32(*(uint32_t *)pbData); 1063 if (pThis->fConvEndianess) 1064 cb = RT_BSWAP_U32(*(uint32_t *)pbData); 1065 else 1066 cb = *(uint32_t *)pbData; 1064 1067 pbData += 4; 1065 1068 } 1066 1069 else if (pThis->cbTypeSize == 8) 1067 1070 { 1068 cb = RT_BSWAP_U64(*(uint64_t *)pbData); 1071 if (pThis->fConvEndianess) 1072 cb = RT_BSWAP_U64(*(uint64_t *)pbData); 1073 else 1074 cb = *(uint64_t *)pbData; 1069 1075 pbData += 8; 1070 1076 }
Note:
See TracChangeset
for help on using the changeset viewer.