VirtualBox

Changeset 65813 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
Feb 20, 2017 12:19:15 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
113548
Message:

gcc 7: fall thru

Location:
trunk/src/VBox/Runtime/common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/crypto/pkix-util.cpp

    r62477 r65813  
    6363                    return RTCR_PKCS1_RSA_OID;
    6464                case 1: AssertFailed();
     65                    /* fall thru */
    6566                default:
    6667                    return NULL;
  • trunk/src/VBox/Runtime/common/math/bignum.cpp

    r65642 r65813  
    677677                    default: AssertFailed();
    678678#if RTBIGNUM_ELEMENT_SIZE == 8
     679                                                          /* fall thru */
    679680                    case 7: uLast = (uLast << 8) | pb[6]; /* fall thru */
    680681                    case 6: uLast = (uLast << 8) | pb[5]; /* fall thru */
     
    715716                    default: AssertFailed();
    716717#if RTBIGNUM_ELEMENT_SIZE == 8
     718                                                          /* fall thru */
    717719                    case 7: uLast = (uLast << 8) | *pb++; /* fall thru */
    718720                    case 6: uLast = (uLast << 8) | *pb++; /* fall thru */
     
    748750            switch (pBigNum->cAllocated - pBigNum->cUsed)
    749751            {
    750                 default: AssertFailed();
     752                default: AssertFailed(); /* fall thru */
    751753                case 3: *puUnused++ = 0; /* fall thru */
    752754                case 2: *puUnused++ = 0; /* fall thru */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette