Changeset 74664 in vbox for trunk/src/VBox
- Timestamp:
- Oct 8, 2018 9:51:47 AM (6 years ago)
- Location:
- trunk/src/VBox/Runtime/common/ldr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrLX.cpp
r74646 r74664 1440 1440 case RANGE: 1441 1441 KLDRMODLX_ASSERT(!"RANGE"); 1442 /* Falls through. */1442 RT_FALL_THRU(); 1443 1443 default: 1444 1444 rc = VERR_LDRLX_BAD_PAGE_MAP; … … 2418 2418 case NRRENT: 2419 2419 KLDRMODLX_ASSERT(!"NRRENT"); 2420 /* Falls through. */2420 RT_FALL_THRU(); 2421 2421 default: 2422 2422 iSelector = -1; -
trunk/src/VBox/Runtime/common/ldr/ldrMachO.cpp
r74656 r74664 744 744 RTLDRMODMACHO_CHECK_RETURN(fOpenFlags & RTLDR_O_FOR_DEBUG, \ 745 745 VERR_LDRMACHO_UNSUPPORTED_INIT_SECTION); \ 746 /* Falls through. */\746 RT_FALL_THRU(); \ 747 747 case S_MOD_TERM_FUNC_POINTERS: \ 748 748 /** @todo this requires a query API or flag... (e.g. C++ destructors) */ \ … … 848 848 *pLinkAddress = pSect->addr; \ 849 849 } \ 850 /* Falls through. */\850 RT_FALL_THRU(); \ 851 851 case MH_EXECUTE: \ 852 852 case MH_DYLIB: \ … … 3077 3077 case X86_64_RELOC_SIGNED_4: 3078 3078 RTLDRMODMACHO_CHECK_RETURN(Fixup.r.r_pcrel, VERR_LDR_BAD_FIXUP); 3079 /* Falls through. */3079 RT_FALL_THRU(); 3080 3080 default: 3081 3081 {
Note:
See TracChangeset
for help on using the changeset viewer.