Changeset 65813 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Feb 20, 2017 12:19:15 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113548
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/pkix-util.cpp
r62477 r65813 63 63 return RTCR_PKCS1_RSA_OID; 64 64 case 1: AssertFailed(); 65 /* fall thru */ 65 66 default: 66 67 return NULL; -
trunk/src/VBox/Runtime/common/math/bignum.cpp
r65642 r65813 677 677 default: AssertFailed(); 678 678 #if RTBIGNUM_ELEMENT_SIZE == 8 679 /* fall thru */ 679 680 case 7: uLast = (uLast << 8) | pb[6]; /* fall thru */ 680 681 case 6: uLast = (uLast << 8) | pb[5]; /* fall thru */ … … 715 716 default: AssertFailed(); 716 717 #if RTBIGNUM_ELEMENT_SIZE == 8 718 /* fall thru */ 717 719 case 7: uLast = (uLast << 8) | *pb++; /* fall thru */ 718 720 case 6: uLast = (uLast << 8) | *pb++; /* fall thru */ … … 748 750 switch (pBigNum->cAllocated - pBigNum->cUsed) 749 751 { 750 default: AssertFailed(); 752 default: AssertFailed(); /* fall thru */ 751 753 case 3: *puUnused++ = 0; /* fall thru */ 752 754 case 2: *puUnused++ = 0; /* fall thru */
Note:
See TracChangeset
for help on using the changeset viewer.