- Timestamp:
- Oct 26, 2010 9:51:53 AM (14 years ago)
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/path.cpp
r31405 r33454 47 47 */ 48 48 size_t cch = g_cchrtProcDir; 49 if (cch < =cchPath)49 if (cch < cchPath) 50 50 { 51 51 memcpy(pszPath, g_szrtProcExePath, cch); -
trunk/src/VBox/Runtime/r3/process.cpp
r28800 r33454 101 101 */ 102 102 size_t cch = g_cchrtProcExePath; 103 if (cch < =cchExecName)103 if (cch < cchExecName) 104 104 { 105 105 memcpy(pszExecName, g_szrtProcExePath, cch);
Note:
See TracChangeset
for help on using the changeset viewer.