Changeset 4468 in vbox
- Timestamp:
- Aug 31, 2007 11:07:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
r4467 r4468 319 319 } 320 320 321 if (dwMajorVersion >= 6) /* Vista and up only */ 321 /* For Vista and up we need to change the integrity of the security descriptor too */ 322 if (dwMajorVersion >= 6) 322 323 { 323 324 HMODULE hModule; … … 339 340 { 340 341 ret = pfnConvertStringSecurityDescriptorToSecurityDescriptorA("S:(ML;;NW;;;LW)", /* this means "low integrity" */ 341 SDDL_REVISION_1, 342 &pSD, NULL); 342 SDDL_REVISION_1, &pSD, NULL); 343 343 if (!ret) 344 344 dprintf(("ConvertStringSecurityDescriptorToSecurityDescriptorA failed with %d\n", GetLastError()));
Note:
See TracChangeset
for help on using the changeset viewer.