Changeset 66843 in vbox for trunk/src/VBox
- Timestamp:
- May 9, 2017 8:28:10 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/posix/SUPR3HardenedMain-posix.cpp
r66841 r66843 471 471 uintptr_t uAddrReturn = (uintptr_t)pbPatchMem; 472 472 *pbPatchMemPush++ = 0x68; /* push imm32 */ 473 *(uint32_t *)pbPatchMemPush = (uint32_t)(uAddrReturn >> 32); 474 pbPatchMemPush += sizeof(uint32_t); 475 476 *pbPatchMemPush++ = 0x68; /* push imm32 */ 473 477 *(uint32_t *)pbPatchMemPush = (uint32_t)uAddrReturn; 474 pbPatchMemPush += sizeof(uint32_t);475 476 *pbPatchMemPush++ = 0x68; /* push imm32 */477 *(uint32_t *)pbPatchMemPush = (uint32_t)(uAddrReturn >> 32);478 478 pbPatchMemPush += sizeof(uint32_t); 479 479 }
Note:
See TracChangeset
for help on using the changeset viewer.