Changeset 64291 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Oct 17, 2016 10:17:49 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 111313
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp
r64285 r64291 39 39 #include <iprt/time.h> 40 40 #include <iprt/thread.h> 41 42 41 43 42 #include <VBox/VBoxGuestLib.h> … … 956 955 957 956 int rc = VINF_SUCCESS; 958 char szPipeName[80]; 959 size_t cbPipeName = sizeof(szPipeName); 960 rc = RTLocalIpcMakeNameUniqueUser(VBOXTRAY_IPC_PIPE_PREFIX, pszUser, szPipeName, &cbPipeName); 957 958 char szPipeName[255]; 961 959 /** @todo r=bird: Pointless if. */ 962 if (RT _SUCCESS(rc))960 if (RTStrPrintf(szPipeName, sizeof(szPipeName), "%s%s", VBOXTRAY_IPC_PIPE_PREFIX, pszUser)) 963 961 { 964 962 bool fReportToHost = false;
Note:
See TracChangeset
for help on using the changeset viewer.