Changeset 36210 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Mar 8, 2011 5:40:10 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70422
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r36155 r36210 2277 2277 VERR_INVALID_PARAMETER); 2278 2278 2279 2280 /* 2281 * Setup/change the core dump directory if specified. 2282 */ 2279 2283 RT_ZERO(g_szCoreDumpDir); 2280 2284 if (pszOutputDir) 2281 2285 { 2282 if (RTDirExists(pszOutputDir)) 2283 RTStrCopy(g_szCoreDumpDir, sizeof(g_szCoreDumpDir), pszOutputDir); 2284 else 2286 if (!RTDirExists(pszOutputDir)) 2285 2287 return VERR_NOT_A_DIRECTORY; 2288 RTStrCopy(g_szCoreDumpDir, sizeof(g_szCoreDumpDir), pszOutputDir); 2286 2289 } 2287 2290
Note:
See TracChangeset
for help on using the changeset viewer.