Changeset 1568 for trunk/dll/pathutil.c
- Timestamp:
- May 31, 2011, 11:11:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/pathutil.c
r1545 r1568 79 79 UINT c = pszPathName ? strlen(pszPathName) : 0; 80 80 if (c > 0) { 81 memcpy(pszFullPathName, pszPathName, c); 81 if (pszFullPathName != pszPathName) 82 memcpy(pszFullPathName, pszPathName, c); 82 83 if (pszFullPathName[c - 1] != '\\') 83 84 pszFullPathName[c++] = '\\';
Note:
See TracChangeset
for help on using the changeset viewer.