Changeset 72371 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- May 28, 2018 8:26:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asn1/asn1-ut-integer.cpp
r72370 r72371 67 67 switch (pThis->Asn1Core.cb) 68 68 { 69 default: AssertBreak(pThis->Asn1Core.cb > 8); /* paranoia */ 56;RT_FALL_THRU();69 default: AssertBreak(pThis->Asn1Core.cb > 8); /* paranoia */ RT_FALL_THRU(); 70 70 case 8: pThis->uValue.u |= (uint64_t)pThis->Asn1Core.uData.pu8[offLast - 7] << 56; RT_FALL_THRU(); 71 71 case 7: pThis->uValue.u |= (uint64_t)pThis->Asn1Core.uData.pu8[offLast - 6] << 48; RT_FALL_THRU();
Note:
See TracChangeset
for help on using the changeset viewer.