Changeset 55026 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 31, 2015 11:25:29 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPHardenedVerifyProcess-win.cpp
r54998 r55026 1660 1660 * Query the region again, redo the free operation if there's still memory there. 1661 1661 */ 1662 if (!NT_SUCCESS(rcNt) || !(pThis->fFlags & SUPHARDNTVP_F_EXEC_ALLOC_REPLACE_WITH_RW))1662 if (!NT_SUCCESS(rcNt)) 1663 1663 break; 1664 1664 SIZE_T cbActual = 0; … … 1672 1672 MemInfo3.AllocationProtect, MemInfo3.Protect)); 1673 1673 supR3HardenedLogFlush(); 1674 if ( pMemInfo->State == MEM_FREE)1674 if (MemInfo3.State == MEM_FREE || !(pThis->fFlags & SUPHARDNTVP_F_EXEC_ALLOC_REPLACE_WITH_RW)) 1675 1675 break; 1676 1676 NtYieldExecution();
Note:
See TracChangeset
for help on using the changeset viewer.