Changeset 105643 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 9, 2024 9:38:35 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164333
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Runtime/r3/memsafer-r3.cpp ¶
r100442 r105643 422 422 * falling back on the less safe one. 423 423 */ 424 rc = rtMemSaferSupR3AllocPages(pThis); 424 if (!(fFlags & RTMEMSAFER_F_NO_SUPLIB_ALLOC)) 425 rc = rtMemSaferSupR3AllocPages(pThis); 426 else 427 rc = VERR_NO_PAGE_MEMORY; 425 428 if (RT_SUCCESS(rc)) 426 429 pThis->enmAllocator = RTMEMSAFERALLOCATOR_SUPR3;
Note:
See TracChangeset
for help on using the changeset viewer.