Changeset 52139 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jul 22, 2014 8:19:29 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r52090 r52139 3238 3238 3239 3239 #if defined(VBOX_WITH_HARDENING) && defined(RT_OS_WINDOWS) 3240 /* Hardened windows builds have spawns twoprocesses when a VM is3241 launched, the 2nd one is the one that will end up here. */3240 /* Hardened windows builds spawns three processes when a VM is 3241 launched, the 3rd one is the one that will end up here. */ 3242 3242 RTPROCESS ppid; 3243 3243 int rc = RTProcQueryParent(pid, &ppid); 3244 if (RT_SUCCESS(rc)) 3245 rc = RTProcQueryParent(ppid, &ppid); 3244 3246 if ( (RT_SUCCESS(rc) && mData->mSession.mPID == ppid) 3245 3247 || rc == VERR_ACCESS_DENIED)
Note:
See TracChangeset
for help on using the changeset viewer.