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