Changeset 62863 in vbox for trunk/src/VBox/Runtime/common/string/uniread.cpp
- Timestamp:
- Aug 2, 2016 10:07:14 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/uniread.cpp
r62477 r62863 1024 1024 memset(szBuf, 0, sizeof(szBuf)); 1025 1025 #ifdef _MSC_VER 1026 _getcwd(szBuf, sizeof(szBuf));1026 if (!_getcwd(szBuf, sizeof(szBuf))) 1027 1027 #else 1028 getcwd(szBuf, sizeof(szBuf));1028 if (!getcwd(szBuf, sizeof(szBuf))) 1029 1029 #endif 1030 return RTEXITCODE_FAILURE; 1030 1031 pszBaseDir = szBuf; 1031 1032 }
Note:
See TracChangeset
for help on using the changeset viewer.