Changeset 52020 in vbox
- Timestamp:
- Jul 14, 2014 8:09:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/memsafer-generic.cpp
r52018 r52020 136 136 if (RT_SUCCESS(rc)) 137 137 { 138 rc = SUPR3PageProtect(pvNew, NIL_RTR0PTR, PAGE_SIZE + cbUser, PAGE_SIZE, RTMEM_PROT_NONE); 138 Assert(cb == (size_t)((uint32_t)(PAGE_SIZE + cbUser))); 139 rc = SUPR3PageProtect(pvNew, NIL_RTR0PTR, PAGE_SIZE + (uint32_t)cbUser, PAGE_SIZE, RTMEM_PROT_NONE); 139 140 if (RT_SUCCESS(rc)) 140 141 {
Note:
See TracChangeset
for help on using the changeset viewer.