Changeset 78114 in vbox for trunk/src/VBox
- Timestamp:
- Apr 12, 2019 12:47:33 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsfpathabs.cpp
r78098 r78114 185 185 /* Fallback for the common paths. */ 186 186 187 return RTPathAbsEx(pszRoot, pszPath, RTPATH_STR_F_STYLE_HOST, pszAbsPath, &cbAbsPath); 187 if (*pszPath != '\0') 188 return RTPathAbsEx(pszRoot, pszPath, RTPATH_STR_F_STYLE_HOST, pszAbsPath, &cbAbsPath); 189 return RTPathAbsEx(NULL, pszRoot, RTPATH_STR_F_STYLE_HOST, pszAbsPath, &cbAbsPath); 188 190 }
Note:
See TracChangeset
for help on using the changeset viewer.