Changeset 86536 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 12, 2020 9:16:36 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140851
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/localipc-win.cpp
r85112 r86536 824 824 SecAttrs.bInheritHandle = FALSE; 825 825 826 /* The SECURITY_XXX flags are needed in order to prevent the server from impersonating with 827 this thread's security context (supported at least back to NT 3.51). See @bugref{9773}. */ 826 828 HANDLE hPipe = CreateFileW(pwszFullName, 827 829 GENERIC_READ | GENERIC_WRITE, … … 829 831 &SecAttrs, 830 832 OPEN_EXISTING, 831 FILE_FLAG_OVERLAPPED 832 /* Needed in order to prevent the server to impersonate with this thread's 833 * security context. See #9773. */ 834 | SECURITY_SQOS_PRESENT | SECURITY_ANONYMOUS, 833 FILE_FLAG_OVERLAPPED | SECURITY_SQOS_PRESENT | SECURITY_ANONYMOUS, 835 834 NULL /*no template handle*/); 836 835 if (hPipe != INVALID_HANDLE_VALUE)
Note:
See TracChangeset
for help on using the changeset viewer.