Changeset 39926 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 31, 2012 8:45:46 PM (13 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/com.cpp
r30632 r39926 206 206 if (RT_SUCCESS(vrc)) 207 207 if (!RTDirExists(aDir)) 208 vrc = RTDirCreateFullPath(aDir, 07 77);208 vrc = RTDirCreateFullPath(aDir, 0700); 209 209 } 210 210 -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r39720 r39926 2662 2662 if (!RTDirExists(dir.c_str())) 2663 2663 { 2664 int vrc = RTDirCreateFullPath(dir.c_str(), 07 77);2664 int vrc = RTDirCreateFullPath(dir.c_str(), 0700); 2665 2665 if (RT_FAILURE(vrc)) 2666 2666 { … … 6005 6005 Assert(logDir.length()); 6006 6006 if (!RTDirExists(logDir.c_str())) 6007 RTDirCreateFullPath(logDir.c_str(), 07 77);6007 RTDirCreateFullPath(logDir.c_str(), 0700); 6008 6008 6009 6009 Utf8Str logFile = Utf8StrFmt("%s%cVBox.log", … … 6497 6497 * Try create the directory. 6498 6498 */ 6499 vrc = RTDirCreateFullPath(pszDumpDir, 07 77);6499 vrc = RTDirCreateFullPath(pszDumpDir, 0700); 6500 6500 if (RT_FAILURE(vrc)) 6501 6501 throw setError(E_FAIL, "Failed to setup CoreDumper. Couldn't create dump directory '%s' (%Rrc)\n", pszDumpDir, vrc); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r39821 r39926 8637 8637 if (!RTDirExists(path.c_str())) 8638 8638 { 8639 vrc = RTDirCreateFullPath(path.c_str(), 07 77);8639 vrc = RTDirCreateFullPath(path.c_str(), 0700); 8640 8640 if (RT_FAILURE(vrc)) 8641 8641 { -
trunk/src/VBox/Main/src-server/MachineImplCloneVM.cpp
r38764 r39926 1286 1286 && !RTDirExists(strTrgSnapshotFolder.c_str())) 1287 1287 { 1288 int vrc = RTDirCreateFullPath(strTrgSnapshotFolder.c_str(), 07 77);1288 int vrc = RTDirCreateFullPath(strTrgSnapshotFolder.c_str(), 0700); 1289 1289 if (RT_FAILURE(vrc)) 1290 1290 throw p->setError(VBOX_E_IPRT_ERROR, -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r39248 r39926 3914 3914 if (fCreate) 3915 3915 { 3916 int vrc = RTDirCreateFullPath(strDir.c_str(), 07 77);3916 int vrc = RTDirCreateFullPath(strDir.c_str(), 0700); 3917 3917 if (RT_FAILURE(vrc)) 3918 3918 return setErrorStatic(VBOX_E_IPRT_ERROR,
Note:
See TracChangeset
for help on using the changeset viewer.