Changeset 36155 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Mar 3, 2011 6:12:18 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70340
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r34178 r36155 2277 2277 VERR_INVALID_PARAMETER); 2278 2278 2279 RT_ZERO(g_szCoreDumpDir); 2280 if (pszOutputDir) 2281 { 2282 if (RTDirExists(pszOutputDir)) 2283 RTStrCopy(g_szCoreDumpDir, sizeof(g_szCoreDumpDir), pszOutputDir); 2284 else 2285 return VERR_NOT_A_DIRECTORY; 2286 } 2287 2279 2288 /* 2280 2289 * Install core dump signal handler only if the flags changed or if it's the first time. … … 2309 2318 } 2310 2319 2311 RT_ZERO(g_szCoreDumpDir);2312 if (pszOutputDir)2313 RTStrCopy(g_szCoreDumpDir, sizeof(g_szCoreDumpDir), pszOutputDir);2314 2315 2320 return VINF_SUCCESS; 2316 2321 }
Note:
See TracChangeset
for help on using the changeset viewer.