Changeset 84637 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Jun 2, 2020 1:33:34 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138385
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r84636 r84637 156 156 static X11CONTEXT x11Context; 157 157 158 #define BUFFER_SIZE 1024159 160 158 struct RANDROUTPUT 161 159 { … … 688 686 char* argv[] = {NULL}; 689 687 char* env[] = {NULL}; 690 char szDRMClientPath[ BUFFER_SIZE];691 RTPathExecDir(szDRMClientPath, BUFFER_SIZE);692 RTPathAppend(szDRMClientPath, BUFFER_SIZE, "VBoxDRMClient");688 char szDRMClientPath[RTPATH_MAX]; 689 RTPathExecDir(szDRMClientPath, RTPATH_MAX); 690 RTPathAppend(szDRMClientPath, RTPATH_MAX, "VBoxDRMClient"); 693 691 int rc = execve(szDRMClientPath, argv, env); 694 692 if (rc == -1)
Note:
See TracChangeset
for help on using the changeset viewer.