Changeset 66033 in vbox for trunk/src/VBox/HostServices/SharedFolders
- Timestamp:
- Mar 10, 2017 1:18:24 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsfpath.cpp
r65993 r66033 595 595 if (RT_SUCCESS(rc)) 596 596 { 597 const size_t cbFullPathLength = pchDst - &pszFullPath[0]; /* As strlen(pszFullPath). */598 597 *pchDst++ = 0; 599 598 … … 627 626 const bool fWildCard = RT_BOOL(fu32Options & VBSF_O_PATH_WILDCARD); 628 627 const bool fPreserveLastComponent = RT_BOOL(fu32Options & VBSF_O_PATH_PRESERVE_LAST_COMPONENT); 629 rc = vbsfCorrectPathCasing(pClient, pszFullPath, cbFullPathLength,628 rc = vbsfCorrectPathCasing(pClient, pszFullPath, strlen(pszFullPath) + 1, 630 629 fWildCard, fPreserveLastComponent); 631 630 }
Note:
See TracChangeset
for help on using the changeset viewer.